From 9e530b11537b23f2343d205453ba55081bf779c7 Mon Sep 17 00:00:00 2001 From: "coding.jackalope" Date: Mon, 23 Nov 2020 19:46:12 -0800 Subject: [PATCH] [main] Changed background color to match dark theme. --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index f616406..32f8ba9 100644 --- a/main.lua +++ b/main.lua @@ -28,7 +28,7 @@ local Slab = require 'Slab' local SlabTest = require 'SlabTest' function love.load(args) - love.graphics.setBackgroundColor(0.4, 0.88, 1.0) + love.graphics.setBackgroundColor(0.07, 0.07, 0.07) Slab.Initialize(args) end