2025-02-15 13:29:01 +01:00
|
|
|
@import "tailwindcss";
|
2025-02-15 18:01:17 +01:00
|
|
|
|
2025-02-15 13:29:01 +01:00
|
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
@plugin "daisyui";
|
2024-09-25 22:20:47 +02:00
|
|
|
|
2025-02-15 18:01:17 +01:00
|
|
|
@theme {
|
|
|
|
--color-cat-rosewater: #f5e0dc;
|
|
|
|
--color-cat-flamingo: #f2cdcd;
|
|
|
|
--color-cat-pink: #f5c2e7;
|
|
|
|
--color-cat-mauve: #cba6f7;
|
|
|
|
--color-cat-red: #f38ba8;
|
|
|
|
--color-cat-maroon: #eba0ac;
|
|
|
|
--color-cat-peach: #fab387;
|
|
|
|
--color-cat-yellow: #f9e2af;
|
|
|
|
--color-cat-green: #a6e3a1;
|
|
|
|
--color-cat-teal: #94e2d5;
|
|
|
|
--color-cat-sky: #89dceb;
|
|
|
|
--color-cat-sapphire: #74c7ec;
|
|
|
|
--color-cat-blue: #89b4fa;
|
|
|
|
--color-cat-lavender: #b4befe;
|
|
|
|
--color-cat-text: #cdd6f4;
|
|
|
|
--color-cat-base: #1e1e2e;
|
|
|
|
}
|
|
|
|
|
2024-09-25 22:20:47 +02:00
|
|
|
@layer utilities {
|
2025-02-15 18:01:17 +01:00
|
|
|
.debug {
|
|
|
|
@apply border border-red-500;
|
|
|
|
}
|
2024-09-25 22:20:47 +02:00
|
|
|
}
|
|
|
|
|
2025-02-15 18:01:17 +01:00
|
|
|
br {
|
2025-02-15 14:59:32 +01:00
|
|
|
@apply my-0.5;
|
2025-02-15 18:01:17 +01:00
|
|
|
}
|
2024-10-06 14:43:06 +02:00
|
|
|
|
2025-02-15 18:01:17 +01:00
|
|
|
h1 {
|
2025-02-15 14:59:32 +01:00
|
|
|
@apply text-4xl font-bold mb-2;
|
2025-02-15 18:01:17 +01:00
|
|
|
}
|
2024-10-06 14:43:06 +02:00
|
|
|
|
2025-02-15 18:01:17 +01:00
|
|
|
h2 {
|
2025-02-15 14:59:32 +01:00
|
|
|
@apply text-3xl font-bold mb-2;
|
2025-02-15 18:01:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
@apply text-2xl font-bold mb-2;
|
|
|
|
}
|
2024-10-20 22:25:52 +02:00
|
|
|
|
2025-02-15 18:01:17 +01:00
|
|
|
/* TODO change default style*/
|
|
|
|
a {
|
2025-02-15 14:59:32 +01:00
|
|
|
@apply link;
|
2025-02-15 18:01:17 +01:00
|
|
|
text-decoration-line: none;
|
2024-09-25 22:20:47 +02:00
|
|
|
}
|