diff options
Diffstat (limited to 'dark.css')
-rw-r--r-- | dark.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dark.css b/dark.css new file mode 100644 index 0000000..4c439ec --- /dev/null +++ b/dark.css @@ -0,0 +1,47 @@ +:root { + --font-color: #eee; + --bg-color: #212121; + + --link-color: #0a9dff; + --link-state-color:#ffa724; + --link-state-border-color: rgba(238, 54, 54, 0.5); + + --thead-bg-color: #343a40; + --table-border-color: lightgrey; + + --nav-bg-color: #242424; + --nav-link-color: #b6b6b6; + + --pre-color: #333; + --pre-bg-color: #f1f1f1; + + --bq-color: #ccc; + --hr-color: #333; + + --pagination-bg-color: #373737; + --pagination-link-color: #b6b6b6; + + --post-info-color: #599ada; + + --switcher-color: #333; + --switcher-bg-color: #fff; +} + +html { + font-family: monospace; +} + +h1, h2, h3 { + color: #aeee00; +} + +ul li { + list-style: '* '; /* Remove default bullets */ +} + +ul li::marker { + color: #ffa724; + font-weight: bold; +} + + |