change selection background color
This commit is contained in:
parent
d63fe9417b
commit
1bb7b207c6
|
|
@ -1,7 +1,7 @@
|
||||||
@import "_variables";
|
@import "_variables";
|
||||||
:root {
|
:root {
|
||||||
--main-accent-color: #3ded92;
|
--main-accent-color: #3ded92;
|
||||||
--warning-color: #fdae37;
|
--warning-color: #fdae37;
|
||||||
}
|
}
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
:root {
|
:root {
|
||||||
|
|
@ -26,7 +26,6 @@ a {
|
||||||
text-decoration-color: var(--main-accent-color);
|
text-decoration-color: var(--main-accent-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
header #arrows {
|
header #arrows {
|
||||||
fill: var(--main-accent-color);
|
fill: var(--main-accent-color);
|
||||||
}
|
}
|
||||||
|
|
@ -36,9 +35,13 @@ header #text {
|
||||||
}
|
}
|
||||||
|
|
||||||
.note {
|
.note {
|
||||||
border-left: .15rem solid var(--main-accent-color);
|
border-left: 0.15rem solid var(--main-accent-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.warning {
|
.warning {
|
||||||
border-left: .15rem solid var(--warning-color);
|
border-left: 0.15rem solid var(--warning-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
::selection {
|
||||||
|
background-color: var(--main-accent-color);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue