2025-02-11 12:52:39 +00:00
|
|
|
@import 'tailwindcss';
|
2025-02-11 12:49:14 +00:00
|
|
|
|
|
|
|
/* @import "tailwindcss"; */
|
|
|
|
/* @import "@nuxt/ui"; */
|
|
|
|
|
|
|
|
@theme {
|
|
|
|
--font-sans: 'Public Sans', sans-serif;
|
|
|
|
|
|
|
|
--breakpoint-3xl: 1920px;
|
|
|
|
|
2025-02-11 12:52:39 +00:00
|
|
|
--color-green-50: #effdf5;
|
|
|
|
--color-green-100: #d9fbe8;
|
|
|
|
--color-green-200: #b3f5d1;
|
|
|
|
--color-green-300: #75edae;
|
|
|
|
--color-green-400: #00dc82;
|
|
|
|
--color-green-500: #00c16a;
|
|
|
|
--color-green-600: #00a155;
|
|
|
|
--color-green-700: #007f45;
|
2025-02-11 12:49:14 +00:00
|
|
|
--color-green-800: #016538;
|
2025-02-11 12:52:39 +00:00
|
|
|
--color-green-900: #0a5331;
|
|
|
|
--color-green-950: #052e16;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
The default border color has changed to `currentColor` in Tailwind CSS v4,
|
|
|
|
so we've added these compatibility styles to make sure everything still
|
|
|
|
looks the same as it did with Tailwind CSS v3.
|
|
|
|
|
|
|
|
If we ever want to remove these styles, we need to add an explicit border
|
|
|
|
color utility to any element that depends on these defaults.
|
|
|
|
*/
|
|
|
|
@layer base {
|
|
|
|
*,
|
|
|
|
::after,
|
|
|
|
::before,
|
|
|
|
::backdrop,
|
|
|
|
::file-selector-button {
|
|
|
|
border-color: var(--color-gray-200, currentColor);
|
|
|
|
}
|
2025-02-11 12:49:14 +00:00
|
|
|
}
|