diff options
Diffstat (limited to 'frontend/src/index.css')
| -rw-r--r-- | frontend/src/index.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/frontend/src/index.css b/frontend/src/index.css index 43cdff5..821a259 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -47,6 +47,30 @@ h5, } } +.theme-dark { + --bg-color: #24292e; + --text-color: #ffffff; + --sidebar-bg: #1b1f23; + --link-color: rgb(90, 200, 250); + background-color: var(--bg-color); + color: var(--text-color); +} + +.theme-black { + --bg-color: #000000; + --text-color: #ffffff; + --sidebar-bg: #111111; + --link-color: rgb(90, 200, 250); + background-color: var(--bg-color); + color: var(--text-color); +} + +.theme-dark button, +.theme-black button { + background-color: #333; + color: #fff; +} + body { margin: 0; min-width: 320px; |
