echoer/client/assets/styling/global.css

19 lines
327 B
CSS
Raw Normal View History

html[data-theme="light"]{
2024-12-23 00:41:55 +08:00
--accent-color:#3F51B5;
color:black;
background-color:white;
2024-12-20 23:45:25 +08:00
}
html[data-theme="dark"]{
2024-12-23 00:41:55 +08:00
--accent-color:#4d648d;
color:white;
background-color:black;
}
2025-01-04 21:33:00 +08:00
html {
overflow-x:hidden;
font-weight: 500;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
2025-01-04 21:33:00 +08:00
}