notes/quartz/components/styles/darkmode.scss

48 lines
691 B
SCSS
Raw Normal View History

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