From 6d941a53f5ff1f93fb3b02d6182f30762b939f5d Mon Sep 17 00:00:00 2001 From: BorisLevitskiy Date: Thu, 9 Apr 2015 18:48:27 +0300 Subject: [PATCH] Adjustments to themes --- src/css/styles.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/css/styles.css b/src/css/styles.css index d60b899..87ccee5 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -13,7 +13,6 @@ code { font-size: 1.2em; font-weight: bold; } .expression .label { font-weight: bold; padding-right: 5px; text-align: right; } .expression .bin { letter-spacing: 3px; } .expression .byte { margin: 0 3px; } -.expression .zero { color: #848586 } .expression .result td { border-top: dotted 1px gray; } .expression { font-size: 1.5em; font-family: monospace } @@ -29,10 +28,12 @@ code { font-size: 1.2em; font-weight: bold; } #view { padding: 10px} /* Light */ +.light { background: rgb(250, 250, 250); } .light .one { color: black; } +.light .zero { color: rgb(105, 106, 107); } + /* Dark */ -.dark { background: black; color: white;} +.dark { background: #121212; color: white;} .dark .expressionInput { background: black; color: white; } .dark a, .dark a:visited { color: white; } -.light { background: ghostwhite; } \ No newline at end of file