Skip to content

Commit

Permalink
client: dark theme css
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizzick committed Jan 16, 2023
1 parent 5cf564e commit 6c4ef19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions client/src/components/App/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
:root {
--bgcolor: #f5f7fb;
--yellow-pale: rgba(247, 181, 0, 0.1);
--green79: #67b279;
--gray-a5: #a5a5a5;
Expand All @@ -8,6 +9,10 @@
--font-size-disable-autozoom: 1rem;
}

[data-theme="dark"] {
--bgcolor: black;
}

body {
margin: 0;
padding: 0;
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/ui/Tabler.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ body {
line-height: 1.5;
color: #495057;
text-align: left;
background-color: #f5f7fb;
background-color: var(--bgcolor);
}

[tabindex="-1"]:focus {
Expand Down

0 comments on commit 6c4ef19

Please sign in to comment.