From 7889fe60e2f685cbf0542d1c342626c60d8ccfd4 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Thu, 16 Apr 2020 05:04:48 +0000 Subject: [PATCH] Improve darkmode button contrast --- webclient/src/App.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webclient/src/App.js b/webclient/src/App.js index aebee7a..5085c88 100644 --- a/webclient/src/App.js +++ b/webclient/src/App.js @@ -77,8 +77,9 @@ function App() { const options = { bottom: '16px', right: '16px', - buttonColorDark: '#333', - buttonColorLight: '#ddd', + buttonColorDark: '#666', + buttonColorLight: '#aaa', + label: '🌙', } const darkmode = new Darkmode(options); darkmode.showWidget();