first commit

This commit is contained in:
mstfyldz
2026-06-03 04:27:40 +03:00
parent dcfaf2723c
commit 48277fe8d2
22 changed files with 1610 additions and 117 deletions
+22 -16
View File
@@ -1,26 +1,32 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
@keyframes meteor {
0% { transform: rotate(215deg) translateX(0); opacity: 1; }
70% { opacity: 1; }
100% { transform: rotate(215deg) translateX(-500px); opacity: 0; }
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
@keyframes shimmer-slide {
from { transform: translateX(-150%); }
to { transform: translateX(250%); }
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
@theme {
--color-primary: #0A0A0A;
--color-accent1: #C8853A;
--color-accent2: #E85D3A;
--color-accent3: #3B4FA6;
--color-text-main: #F5F0E8;
--font-sans: var(--font-inter), sans-serif;
--font-serif: var(--font-playfair), serif;
--animate-meteor: meteor 5s linear infinite;
--animate-shimmer-slide: shimmer-slide 2.5s ease-in-out infinite;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
background-color: var(--color-primary);
color: var(--color-text-main);
@apply font-sans;
}