From 501b5715b07bc45b4e290da896c88f2ea9260f62 Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 26 Jan 2022 00:41:55 -0600 Subject: [PATCH] Dark mode? Dark mode --- styles/styles.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/styles/styles.css b/styles/styles.css index 4ea97a5..ee423c7 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -8,18 +8,18 @@ /* GLOBALS */ :root { - --background-bright: #fdfcfa; - --background: #ecebe9; + --background-bright: #323232; + --background: #2a2a2a; --line: rgba(0,0,0,0.1); - --greenlink: #327117; - --greenlink-hover: #47b625; + --greenlink: #47b625; + --greenlink-hover: #82e24f; --warning: #f7cf04; --error: #d95757; - --link: #286a9d; - --link-hover: #3ea5f3; + --link: #5da9fb; + --link-hover: #81ccfb; --shadow: 8px -5px rgba(0,0,0,0.1); - --text: #414040; - --text-code: #a7674e; + --text: #d9d9d9; + --text-code: #d48163; } html { overflow-y: scroll;