Skip to content

Commit

Permalink
Link colors changes the mode
Browse files Browse the repository at this point in the history
  • Loading branch information
KaganCanSit committed Jul 21, 2024
1 parent a9659dd commit 6be5ae6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions css/bootstrap.min.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:root {
--themeColor: #00b6b6;
--link-color-light-theme: #00b3b3;
--link-color-dark-theme: #00ffff;
--themeColor: #42EABD;
--link-color-light-theme: #00c28e;
--link-color-dark-theme: #00ffbb;
--background-light: #FFFFFF;
--background-dark: #0C0C0D;
--text-light: #7c7c7c;
Expand Down Expand Up @@ -240,15 +240,15 @@ a {
color: var(--link-color-light-theme);
text-decoration: none;
transition: color 0.3s;
}
body.dark-theme a {
}

body.dark-mode a {
color: var(--link-color-dark-theme);
}
a:hover {
}

a:hover {
color: var(--themeColor);
}
}

a:not([href]):not([tabindex]) {
color: inherit;
Expand Down

0 comments on commit 6be5ae6

Please sign in to comment.