This commit is contained in:
2025-10-31 15:05:47 +03:30
parent 37c501890f
commit a96fbfa91c
23 changed files with 5324 additions and 295 deletions

View File

@@ -1,12 +1,12 @@
@import "tailwindcss";
:root {
--background: #ffffff;
/* --background: #ffffff; */
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
/* --color-background: var(--background); */
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
@@ -14,13 +14,14 @@
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
/* --background: #0a0a0a; */
--foreground: #ededed;
}
}
body {
background: var(--background);
/* background: var(--background); */
background: linear-gradient(180deg, #eef7ff, #f6fbff);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: vazir,Arial, Helvetica, sans-serif;
}