wiki/quartz/components/styles/darkmode.scss

47 lines
678 B
SCSS
Raw Normal View History

2023-06-07 02:48:37 +00:00
.darkmode {
cursor: pointer;
padding: 0;
2023-06-07 02:48:37 +00:00
position: relative;
background: none;
border: none;
2023-06-18 17:47:07 +00:00
width: 20px;
height: 20px;
margin: 0 10px;
text-align: inherit;
2023-06-07 02:48:37 +00:00
& svg {
position: absolute;
width: 20px;
height: 20px;
top: calc(50% - 10px);
fill: var(--darkgray);
transition: opacity 0.1s ease;
}
}
2023-09-17 17:29:20 +00:00
:root[saved-theme="dark"] {
color-scheme: dark;
}
:root[saved-theme="light"] {
color-scheme: light;
}
:root[saved-theme="dark"] .darkmode {
2023-06-07 02:48:37 +00:00
& > #dayIcon {
display: none;
2023-06-07 02:48:37 +00:00
}
& > #nightIcon {
display: inline;
2023-06-07 02:48:37 +00:00
}
}
:root .darkmode {
2023-06-07 02:48:37 +00:00
& > #dayIcon {
display: inline;
2023-06-07 02:48:37 +00:00
}
& > #nightIcon {
display: none;
2023-06-07 02:48:37 +00:00
}
}