Skip to content

Commit

Permalink
update colors to VGA
Browse files Browse the repository at this point in the history
  • Loading branch information
notwithering committed Mar 10, 2024
1 parent 528de98 commit 0fc90ee
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions styles.css
Original file line number Diff line number Diff line change
@@ -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);
Expand Down

0 comments on commit 0fc90ee

Please sign in to comment.