32 lines
654 B
CSS
32 lines
654 B
CSS
@import "tailwindcss/theme.css" layer(theme);
|
|
@import "tailwindcss/preflight.css" layer(base);
|
|
@import "tailwindcss/utilities.css";
|
|
|
|
/* Platform font fallbacks so typographic scale behaves consistently. */
|
|
@media android {
|
|
:root {
|
|
--font-sans: normal;
|
|
--font-serif: serif;
|
|
--font-mono: monospace;
|
|
--font-rounded: normal;
|
|
}
|
|
}
|
|
|
|
@media ios {
|
|
:root {
|
|
--font-sans: system-ui;
|
|
--font-serif: ui-serif;
|
|
--font-mono: ui-monospace;
|
|
--font-rounded: ui-rounded;
|
|
}
|
|
}
|
|
|
|
@layer theme {
|
|
@theme {
|
|
--color-brand-50: #e9fbf4;
|
|
--color-brand-100: #c7f5e3;
|
|
--color-brand-500: #00d48c;
|
|
--color-brand-700: #009d68;
|
|
}
|
|
}
|