schreiben/src/app.css

51 lines
934 B
CSS
Raw Normal View History

2023-08-28 13:25:36 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-03-05 17:10:29 +00:00
:root {
2023-08-29 14:05:34 +00:00
font-family:
Inter,
ui-sans-serif,
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
"Helvetica Neue",
Arial,
"Noto Sans",
sans-serif,
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji";
2023-03-05 17:10:29 +00:00
font-weight: 400;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2023-03-26 00:56:36 +00:00
color-scheme: dark light;
2023-03-26 00:56:36 +00:00
--background: white;
--foreground: black;
--transparentish: rgba(0, 0, 0, 0.2);
--accent-bg: #cbd5e1;
--accent-fg: #1e293b;
2023-03-05 17:10:29 +00:00
}
2023-08-28 13:38:39 +00:00
/*
2023-03-26 00:56:36 +00:00
a {
color: var(--accent-fg);
2023-08-28 13:38:39 +00:00
} */
2023-03-26 00:56:36 +00:00
@media (prefers-color-scheme: dark) {
:root {
--background: #18181b;
--foreground: #d4d4d8;
--transparentish: rgba(255, 255, 255, 0.2);
--accent-bg: #334155;
--accent-fg: #94a3b8;
}
2023-03-05 17:10:29 +00:00
}