From 0ec9e1f5f17cf115089c95a349a9187361154ca7 Mon Sep 17 00:00:00 2001 From: neri Date: Wed, 19 Aug 2020 16:25:03 +0200 Subject: [PATCH] use more css vars --- static/index.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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);