From 4ff5e94370ee29f90ab61d57b7bcf7d82f0b29c7 Mon Sep 17 00:00:00 2001 From: Ale32bit Date: Sun, 6 Nov 2016 12:55:17 +0100 Subject: [PATCH] color fix --- src/apps/system/info.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/system/info.lua b/src/apps/system/info.lua index 109df25..8df4709 100644 --- a/src/apps/system/info.lua +++ b/src/apps/system/info.lua @@ -1,6 +1,6 @@ local function clear() - term.setBackgroundColor(colors.white) - term.setTextColor(colors.black) + term.setBackgroundColor(sPhone.getTheme("backgroundColor")) + term.setTextColor(sPhone.getTheme("text")) term.clear() term.setCursorPos(1,1) end