initial commit

This commit is contained in:
2026-03-12 06:37:16 +08:00
commit c31ebd35e7
41 changed files with 6272 additions and 0 deletions

35
src/index.css Normal file
View File

@@ -0,0 +1,35 @@
@import "tailwindcss";
@font-face {
font-family: "Vazirmatn";
src: url("/fonts/Vazirmatn[wght].woff2") format("woff2");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}
@custom-variant dark (&:is(.dark *));
@theme {
--color-quera-blue: #2563eb;
--font-sans: "Vazirmatn", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}
/* Automatically apply Vazirmatn font when language is Persian */
:lang(fa) {
font-family: "Vazirmatn", system-ui, Avenir, Helvetica, Arial, sans-serif;
}
@layer base {
* {
border-color: var(--color-border);
}
body {
background-color: var(--color-background);
color: var(--color-foreground);
}
}