khagu's picture
add all files for deployment
9215c5e
@import 'tailwindcss';
@import 'tw-animate-css';
@custom-variant dark (&:is(.dark *));
:root {
--background: oklch(0.98 0.001 0);
--foreground: oklch(0.15 0.02 0);
--card: oklch(1 0 0);
--card-foreground: oklch(0.15 0.02 0);
--popover: oklch(1 0 0);
--popover-foreground: oklch(0.15 0.02 0);
--primary: #5E60CE;
--primary-foreground: oklch(1 0 0);
--secondary: #48CAE4;
--secondary-foreground: oklch(1 0 0);
--accent: #FF9F1C;
--accent-foreground: oklch(1 0 0);
--feature-blue: #5E60CE;
--feature-purple: #48CAE4;
--feature-green: #9EF01A;
--muted: #C7CEEA;
--muted-foreground: #2D3748;
--destructive: #FF6B6B;
--destructive-foreground: oklch(1 0 0);
--border: #E0E0E0;
--input: #F8F9FA;
--ring: #5E60CE;
--chart-1: #5E60CE;
--chart-2: #48CAE4;
--chart-3: #9EF01A;
--chart-4: #FF9F1C;
--chart-5: #C7CEEA;
--radius: 0.625rem;
--sidebar: #F8F9FA;
--sidebar-foreground: #2D3748;
--sidebar-primary: #5E60CE;
--sidebar-primary-foreground: #F8F9FA;
--sidebar-accent: #48CAE4;
--sidebar-accent-foreground: #0D1B2A;
--sidebar-border: #E0E0E0;
--sidebar-ring: #5E60CE;
}
.dark {
--background: #0D1B2A;
--foreground: #F8F9FA;
--card: #1a2332;
--card-foreground: #F8F9FA;
--popover: #1a2332;
--popover-foreground: #F8F9FA;
--primary: #5E60CE;
--primary-foreground: #F8F9FA;
--secondary: #48CAE4;
--secondary-foreground: #0D1B2A;
--accent: #FF9F1C;
--accent-foreground: #0D1B2A;
--feature-blue: #5E60CE;
--feature-purple: #48CAE4;
--feature-green: #9EF01A;
--muted: #2D3748;
--muted-foreground: #C7CEEA;
--destructive: #FF6B6B;
--destructive-foreground: #F8F9FA;
--border: #2D3748;
--input: #1a2332;
--ring: #48CAE4;
--chart-1: #5E60CE;
--chart-2: #48CAE4;
--chart-3: #9EF01A;
--chart-4: #FF9F1C;
--chart-5: #C7CEEA;
--sidebar: #1a2332;
--sidebar-foreground: #F8F9FA;
--sidebar-primary: #5E60CE;
--sidebar-primary-foreground: #F8F9FA;
--sidebar-accent: #48CAE4;
--sidebar-accent-foreground: #0D1B2A;
--sidebar-border: #2D3748;
--sidebar-ring: #48CAE4;
}
@theme inline {
--font-sans: 'Inter', 'Inter Fallback', system-ui, sans-serif;
--font-mono: 'Geist Mono', 'Geist Mono Fallback', monospace;
/* Custom breakpoint for extra small screens */
--breakpoint-xs: 400px;
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-popover: var(--popover);
--color-popover-foreground: var(--popover-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-destructive-foreground: var(--destructive-foreground);
--color-border: var(--border);
--color-input: var(--input);
--color-ring: var(--ring);
--color-chart-1: var(--chart-1);
--color-chart-2: var(--chart-2);
--color-chart-3: var(--chart-3);
--color-chart-4: var(--chart-4);
--color-chart-5: var(--chart-5);
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--color-sidebar: var(--sidebar);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
}
@layer base {
* {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
}
/* Smooth scrolling for anchor links */
html {
scroll-behavior: smooth;
}
/* Improve touch targets on mobile */
@media (max-width: 768px) {
button,
a,
input,
textarea,
select {
min-height: 44px;
}
}
/* Better focus states for accessibility */
:focus-visible {
outline: 2px solid var(--primary);
outline-offset: 2px;
}
}
/* Utility for line clamping */
@layer utilities {
.line-clamp-3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
}