Skip to content

Commit

Permalink
Release new version with latest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tomayac committed Nov 19, 2021
1 parent b2d0924 commit 197d2d3
Show file tree
Hide file tree
Showing 4 changed files with 652 additions and 2,284 deletions.
8 changes: 4 additions & 4 deletions demo/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
:root {
color-scheme: dark; /* stylelint-disable-line property-no-unknown */

--background-color: rgb(15, 15, 15);
--text-color: rgb(240, 240, 240);
--shadow-color: rgba(240, 240, 240, 0.5);
--accent-color: rgba(0, 0, 240, 0.5);
--background-color: rgb(15 15 15);
--text-color: rgb(240 240 240);
--shadow-color: rgb(240 240 240 / 50%);
--accent-color: rgb(0 0 240 / 50%);
}

img {
Expand Down
8 changes: 4 additions & 4 deletions demo/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
:root {
color-scheme: light; /* stylelint-disable-line property-no-unknown */

--background-color: rgb(240, 240, 240);
--text-color: rgb(15, 15, 15);
--shadow-color: rgba(15, 15, 15, 0.5);
--accent-color: rgba(240, 0, 0, 0.5);
--background-color: rgb(240 240 240);
--text-color: rgb(15 15 15);
--shadow-color: rgb(15 15 15 / 50%);
--accent-color: rgb(240 0 0 / 50%);
}
Loading

0 comments on commit 197d2d3

Please sign in to comment.