47 lines
826 B
CSS
47 lines
826 B
CSS
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
@theme static {
|
|
--font-sans: "Inter", sans-serif;
|
|
|
|
--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;
|
|
--color-green-800: #016538;
|
|
--color-green-900: #0a5331;
|
|
--color-green-950: #052e16;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background-color: #f8fafc;
|
|
color: #0f172a;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.dark body {
|
|
background-color: #020617;
|
|
color: #f8fafc;
|
|
}
|
|
|
|
::selection {
|
|
background: rgba(34, 197, 94, 0.2);
|
|
color: #0f172a;
|
|
}
|
|
|
|
.dark {
|
|
::selection {
|
|
background: rgba(34, 197, 94, 0.3);
|
|
color: #f8fafc;
|
|
}
|
|
}
|