24 lines
477 B
CSS
24 lines
477 B
CSS
html[data-theme="light"]{
|
|
--accent-color:#3F51B5;
|
|
color:black;
|
|
background-color:white;
|
|
}
|
|
|
|
html[data-theme="dark"]{
|
|
--accent-color:#4d648d;
|
|
color:white;
|
|
background-color:black;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'AlimamaTi';
|
|
src: url('/assets/fonts/AlimamaFangYuanTiVF.ttf') format('truetype');
|
|
font-display: swap;
|
|
font-weight: 500;
|
|
}
|
|
|
|
html {
|
|
overflow-x:hidden;
|
|
font-family: 'AlimamaTi', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
}
|