diff --git a/static/index.css b/static/index.css index d8818bb..0ac5067 100644 --- a/static/index.css +++ b/static/index.css @@ -1,8 +1,10 @@ :root { + --bg: #222222; --fg: #e9e9e9; } + body { - background-color: #222222; + background-color: var(--bg); margin: 0; } @@ -37,7 +39,7 @@ input, select, textarea, .button { - background-color: #222222; + background-color: var(--bg); color: var(--fg); padding: 0.5rem; border: 2px solid var(--fg);