File size: 4,589 Bytes
9215c5e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@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;
  }
}