Skip to content

Commit

Permalink
wip?: new default theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
JackDotJS committed Apr 17, 2024
1 parent 8e0a071 commit 9c78bd2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions src/css/default-dark.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
:root {
--dark0: #1D383D;
--dark1: #2F4F4C;
--dark2: #3C5F58;
--dark3: #4A7167;
--mid0: #83ABA5;
--mid1: #9DC1B2;
--mid2: #B1D3BE;
--mid3: #C8E9CC;
--light0: #C0E2EC;
--light1: #E2F1F5;
--dark0: #2f353d;
--dark1: #444950;
--dark2: #555960;
--dark3: #656a71;
--mid0: #9ba2ab;
--mid1: #b3b9c1;
--mid2: #c6cbd3;
--mid3: #dfe3ea;
--light0: #e2e6ec;
--light1: #f0f2f5;
--light2: #FFFFFF;
--blue: #507FF4;
--purple: #BD64BB;
--red: #F95858;
--orange: #F98F5B;
--yellow: #F7C060;
--yellow: #F7CE60;
}
2 changes: 1 addition & 1 deletion src/css/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ body {
padding: 0;
margin: 0;
flex-direction: column;
background-color: var(--dark0);
background-color: var(--dark1);
color: var(--mid1);
}

Expand Down

0 comments on commit 9c78bd2

Please sign in to comment.