mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-14 11:06:21 +05:00
* feat: upgrade dependencies * chore: update linter and CI workflows * chore: upgrade browserslist
36 lines
392 B
SCSS
36 lines
392 B
SCSS
@import '../../styles/variables.scss';
|
|
|
|
.background {
|
|
fill: #f2f8fa;
|
|
transition: fill 0.2s ease;
|
|
|
|
&.active {
|
|
fill: $link;
|
|
}
|
|
}
|
|
|
|
:global(.dark) .background {
|
|
fill: $dark-grey;
|
|
|
|
&.active {
|
|
fill: $link-dark;
|
|
}
|
|
}
|
|
|
|
.text {
|
|
fill: #4b67d6;
|
|
transition: fill 0.2s ease;
|
|
|
|
&.active {
|
|
fill: $link;
|
|
}
|
|
}
|
|
|
|
:global(.dark) .text {
|
|
fill: $off-white-dark;
|
|
|
|
&.active {
|
|
fill: $link-dark;
|
|
}
|
|
}
|