UI Screens updated

This commit is contained in:
2026-01-22 11:27:35 +05:30
parent 34e2c61edd
commit 37835cf5c9
9 changed files with 1301 additions and 83 deletions

View File

@@ -1,26 +1,55 @@
@import "tailwindcss";
@theme {
--color-primary: #3b82f6;
--color-secondary: #8b5cf6;
--color-accent: #10b981;
--color-background: #030712;
--color-foreground: #f3f4f6;
--color-card: rgba(17, 24, 39, 0.7);
--color-border: rgba(75, 85, 99, 0.3);
}
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
--background: #030712;
--foreground: #f3f4f6;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
overflow-x: hidden;
}
@layer utilities {
.glass {
background: rgba(17, 24, 39, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(75, 85, 99, 0.3);
}
.text-gradient {
background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.animate-pulse-slow {
animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
}
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}