From b9a392f5f1db5c7de60e929fdcc0ca42885f81ca Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 13 May 2019 18:18:57 +0200 Subject: Added user based dark theme support Co-authored-by: LarsVomMars --- src/main/resources/css/darkLayout.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/main/resources/css/darkLayout.css (limited to 'src/main/resources/css/darkLayout.css') diff --git a/src/main/resources/css/darkLayout.css b/src/main/resources/css/darkLayout.css new file mode 100644 index 0000000..71172a5 --- /dev/null +++ b/src/main/resources/css/darkLayout.css @@ -0,0 +1,32 @@ +/** + Main + */ +body { + background-color: #181a1b; +} + +.main { + color: #d0cdc6 +} + +button { + text-decoration-color: initial; + background-color: #3d4043; + border-top-color: #595959; + border-right-color: #595959; + border-bottom-color: #595959; + border-left-color: #595959; + color: #ffffff; +} + +input { + border-color: #575757; + color: #e8e6e3; +} + +/** + Other stuff + */ +tr:hover { + background-color: #121516 !important; +} -- cgit v1.2.3