Skip to content

Commit

Permalink
Update theme colors in ThemeToggle and Header components
Browse files Browse the repository at this point in the history
  • Loading branch information
xuelink committed Feb 3, 2024
1 parent ba2aceb commit 71ed8ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/molecules/ThemeToggle.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@
#sun {
fill: var(--color--text);
> * {
filter: drop-shadow(0px 0px 3px var(--color--text));
filter: drop-shadow(0px 0px 3px var(--color--secondary));
}
}
#sun-beams {
stroke: var(--color--text);
line {
filter: drop-shadow(0px 0px 3px var(--color--text));
filter: drop-shadow(0px 0px 3px var(--color--secondary));
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/organisms/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
text-decoration: none;
&:hover {
color: var(--color--primary);
filter: drop-shadow(0px 0px 3px var(--color--primary));
color: var(--color--text);
filter: drop-shadow(0px 0px 3px var(--color--secondary));
}
}
}
Expand Down

0 comments on commit 71ed8ce

Please sign in to comment.