first commit
ci / ci (22, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
2026-05-10 15:53:34 +07:00
commit 5730978b9c
20 changed files with 11030 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
@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;
}
}