Skip to content

Commit

Permalink
simplified color setup
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikhanasand committed Feb 18, 2025
1 parent dd2bc2d commit 527f186
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions ui/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
@config '../../tailwind.config.ts';

@theme {
--color-dark: #f8f8f8;
--color-normal: #e0e0e0;
--color-light: #d6d6d6;
--color-extralight: #c4c4c4;
--color-superlight: #b0b0b0;
--color-bright: black;
--color-dark: none;
--color-normal: none;
--color-light: none;
--color-extralight: none;
--color-superlight: none;
--color-bright: none;
--color-shallow: none;
}

@utility noscroll {
Expand Down Expand Up @@ -38,6 +39,7 @@
--color-extralight: #323232;
--color-superlight: #424242;
--color-bright: white;
--color-shallow: gray;
}

.light {
Expand All @@ -49,6 +51,7 @@
--color-extralight: #c4c4c4;
--color-superlight: #b0b0b0;
--color-bright: black;
--color-shallow: rgb(116, 116, 116);
}

body {
Expand Down

0 comments on commit 527f186

Please sign in to comment.