From 0fc90ee65f8e8adf966af91fdb5e9dba65fc13f6 Mon Sep 17 00:00:00 2001 From: Core <124115470+NotWithering@users.noreply.github.com> Date: Sun, 10 Mar 2024 14:56:54 -0400 Subject: [PATCH] update colors to VGA --- styles.css | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/styles.css b/styles.css index fde7c41..543cd2b 100644 --- a/styles.css +++ b/styles.css @@ -1,11 +1,14 @@ :root { --background-color: var(--black); - --white: #aaaaaa; - --red: #ff5555; - --blue: #0000aa; - --gray: #555555; - --black: #000; + --black: rgb(0, 0, 0); + --red: rgb(170, 0 , 0); + --green: rgb(0, 170, 0); + --yellow: rgb(170, 85, 0); + --blue: rgb(0, 0, 170); + --magenta: rgb(170, 0, 170); + --cyan: rgb(0, 170, 170); + --white: rgb(170, 170, 170); } .fgRed { color: var(--red);