chiya/assets/css/app.css

39 lines
879 B
CSS
Raw Normal View History

2023-03-05 16:07:40 +01:00
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
2023-03-13 02:03:48 +01:00
@import "./lolight.css";
@import "./lightbox.css";
2023-03-15 10:21:08 +01:00
@layer base {
:root {
--color-primary: 16 185 129;
2023-03-15 16:15:24 +01:00
--color-background: 255 255 255;
2023-03-15 16:18:19 +01:00
--color-text-base: 82 82 91;
2023-03-15 16:15:24 +01:00
--color-text-heading: 24 24 27;
--color-text-muted: 82 82 91;
--color-text-dim: 244 244 245;
2023-03-15 10:21:08 +01:00
}
2023-03-15 16:27:15 +01:00
:root[data-theme=roguelight] {
--color-primary: 150 207 133;
--color-background: 53 43 49;
2023-03-15 16:27:15 +01:00
--color-text-base: 245 245 212;
--color-text-heading: 150 207 133;
2023-03-15 16:27:15 +01:00
--color-text-muted: 245 245 212;
2023-03-16 08:39:44 +01:00
--color-text-dim: 324 11 26;
2023-03-15 16:27:15 +01:00
}
2023-03-15 10:21:08 +01:00
}
/*
Invert prose styles based on the variant of the theme.
*/
:root[data-variant=dark] .prose {
@apply prose-invert;
}
/* Set appropriate width for identity icons */
a[rel] svg {
width: 1em;
fill: rgb(var(--color-text-heading));
}