ct/app/assets/css/main.css

26 lines
390 B
CSS
Raw Normal View History

2025-09-29 14:45:33 +08:00
@import "tailwindcss";
@import "@nuxt/ui";
@theme static {
2025-09-29 18:02:28 +08:00
--font-sans: 'Public Sans', sans-serif;
--font-serif: 'Instrument Serif', serif;
2025-09-29 14:45:33 +08:00
}
:root {
2025-09-29 18:02:28 +08:00
--ui-container: var(--container-max-width);
2025-09-29 14:45:33 +08:00
2025-09-29 18:02:28 +08:00
::selection {
color: #282a30;
background-color: #c8c8c8;
}
2025-09-29 14:45:33 +08:00
}
.dark {
2025-09-29 18:02:28 +08:00
::selection {
color: #ffffff;
background-color: #474747;
}
2025-09-29 14:45:33 +08:00
}