echoer/client/assets/styling/global.css

30 lines
470 B
CSS
Raw Normal View History

2024-12-23 00:41:55 +08:00
.light{
--accent-color:#3F51B5;
color:black;
2024-12-20 23:45:25 +08:00
}
2024-12-23 00:41:55 +08:00
.dark{
--accent-color:#4d648d;
color:white;
}
html.dark{
background-color:black;
}
html.light{
background-color:white;
2024-12-20 23:45:25 +08:00
}
2025-01-08 23:19:59 +08:00
@font-face {
font-family: 'AlimamaTi';
src: url('/assets/fonts/AlimamaFangYuanTiVF.ttf') format('truetype');
font-display: swap;
font-weight: 900;
}
2025-01-04 21:33:00 +08:00
html {
overflow-x:hidden;
2025-01-08 23:19:59 +08:00
font-family: 'AlimamaTi', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
2025-01-04 21:33:00 +08:00
}