Skip to content

Commit

Permalink
Changed default colors
Browse files Browse the repository at this point in the history
  • Loading branch information
NadavTasher committed Nov 8, 2024
1 parent 58a7fa0 commit cfbfeff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ This behaviour can be disabled - exclude the [`/stylesheets/colors.css`](https:/

```css
:root {
--text: #707070;
--theme: #ffffff;
--active: #c0c0c0;
--passive: #f0f0f0;
--text: #ffffff;
--theme: #1a233a;
--active: #7181a1;
--passive: #39415a;
}
```

Expand Down
12 changes: 5 additions & 7 deletions image/src/frontend/stylesheets/colors.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
@media (prefers-color-scheme: dark) {
:root {
--text: #ffffff;
--text: #ebebeb;
--theme: #0f172a;
--active: #7674af;
--passive: #1e293b;
--overlay: #0f172a90;
}
}

@media (prefers-color-scheme: light) {
:root {
--text: #707070;
--theme: #ffffff;
--active: #c0c0c0;
--passive: #f0f0f0;
--overlay: #ffffff90;
--text: #656565;
--theme: #f5f5f5;
--active: #b3b3b3;
--passive: #ededed;
}
}

0 comments on commit cfbfeff

Please sign in to comment.