2026-03-01 17:58:08 +08:00
|
|
|
@import 'tailwindcss';
|
2026-03-01 03:04:24 +08:00
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--background: #f9fafb;
|
|
|
|
|
--foreground: #111827;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background: var(--background);
|
|
|
|
|
color: var(--foreground);
|
2026-03-10 18:20:36 +08:00
|
|
|
font-family:
|
|
|
|
|
system-ui,
|
|
|
|
|
-apple-system,
|
|
|
|
|
'PingFang SC',
|
|
|
|
|
'Hiragino Sans GB',
|
|
|
|
|
'Microsoft YaHei',
|
|
|
|
|
sans-serif;
|
2026-03-01 03:04:24 +08:00
|
|
|
}
|
2026-03-14 03:19:39 +08:00
|
|
|
|
|
|
|
|
/* Scrollbar - Dark theme */
|
|
|
|
|
* {
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: #475569 #1e293b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-track {
|
|
|
|
|
background: #1e293b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
|
|
|
background: #475569;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-corner {
|
|
|
|
|
background: #1e293b;
|
|
|
|
|
}
|