From fc02f0687fa652bf954f4050f8c596d425af9dc6 Mon Sep 17 00:00:00 2001 From: osmarks Date: Thu, 26 Jul 2018 21:55:21 +0100 Subject: [PATCH] Change colors. Again. --- lib.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.lua b/lib.lua index a770f63..000b459 100644 --- a/lib.lua +++ b/lib.lua @@ -81,10 +81,10 @@ local function serve(fn, node_type) local titlebar = window.create(term.current(), 1, 1, w, 1) local main_screen = window.create(term.current(), 1, 2, w, h - 1) - init_screen(titlebar, colors.lightgray, colors.black) + init_screen(titlebar, colors.lightGray, colors.black) titlebar.write("Wyvern " .. node_type) - init_screen(main_screen, colors.black, colors.white) + init_screen(main_screen, colors.white, colors.black) term.redirect(main_screen) titlebar.redraw()