echoer/client/assets/styling/global.css

24 lines
477 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-08 23:19:59 +08:00
@font-face {
font-family: 'AlimamaTi';
src: url('/assets/fonts/AlimamaFangYuanTiVF.ttf') format('truetype');
font-display: swap;
font-weight: 500;
2025-01-08 23:19:59 +08:00
}
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
}