make out-of-focus color more subtle

This commit is contained in:
Kartik K. Agaram 2022-12-17 12:20:10 -08:00
parent 276ca2287e
commit 3c2fa4a949
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ function App.focus(in_focus)
if in_focus then
love.graphics.setBackgroundColor(1,1,1)
else
love.graphics.setBackgroundColor(0.8,0.8,0.8)
love.graphics.setBackgroundColor(0.95,0.95,0.95)
end
if on.focus then on.focus(in_focus) end
end