Skip to content

Commit

Permalink
chore: add fg hover color
Browse files Browse the repository at this point in the history
  • Loading branch information
wholesome-ghoul committed Jun 30, 2022
1 parent 0fa42dc commit 3aa45ec
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/index.scss
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
@import "reset.scss";

:root {
--bg-color: white;
--fg-color: black;
--secondary-color: grey;
}

[data-theme="dark"] {
--bg-color: hsl(250, 13%, 9%);
--fg-color: hsl(25, 91%, 43%);
--fg-hover-color: hsl(25, 91%, 53%);
--secondary-color: hsl(25, 64%, 56%);
}

[data-theme="light"] {
--bg-color: white;
--fg-color: black;
--fg-hover-color: hsl(0, 0%, 40%);
--secondary-color: grey;
}

* {
transition-duration: 300ms;
transition-duration: 220ms;
}

body {
Expand Down

0 comments on commit 3aa45ec

Please sign in to comment.