-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.css
More file actions
96 lines (70 loc) · 2.14 KB
/
Copy pathindex.css
File metadata and controls
96 lines (70 loc) · 2.14 KB
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 220 25% 97%;
--foreground: 230 25% 10%;
--card: 0 0% 100%;
--card-foreground: 230 25% 10%;
--popover: 0 0% 100%;
--popover-foreground: 230 25% 10%;
--primary: 250 70% 60%;
--primary-foreground: 0 0% 100%;
--secondary: 220 20% 95%;
--secondary-foreground: 230 25% 10%;
--muted: 220 20% 95%;
--muted-foreground: 230 10% 45%;
--accent: 210 100% 55%;
--accent-foreground: 0 0% 100%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 100%;
--border: 220 20% 88%;
--input: 220 20% 88%;
--ring: 250 70% 60%;
--radius: 0.75rem;
/* Gradients */
--gradient-primary: linear-gradient(135deg, hsl(250, 70%, 60%) 0%, hsl(280, 70%, 65%) 100%);
--gradient-hero: linear-gradient(135deg, hsl(250, 70%, 50%) 0%, hsl(280, 70%, 60%) 50%, hsl(210, 100%, 55%) 100%);
--gradient-card: linear-gradient(135deg, hsl(250, 70%, 98%) 0%, hsl(280, 70%, 98%) 100%);
/* Shadows */
--shadow-glow: 0 0 40px hsl(250 70% 60% / 0.3);
--shadow-card: 0 10px 30px -10px hsl(250 70% 60% / 0.15);
--shadow-elevated: 0 20px 60px -15px hsl(250 70% 60% / 0.25);
/* Animations */
--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dark {
--background: 230 30% 8%;
--foreground: 220 20% 98%;
--card: 230 25% 12%;
--card-foreground: 220 20% 98%;
--popover: 230 25% 12%;
--popover-foreground: 220 20% 98%;
--primary: 250 70% 60%;
--primary-foreground: 0 0% 100%;
--secondary: 230 20% 18%;
--secondary-foreground: 220 20% 98%;
--muted: 230 20% 18%;
--muted-foreground: 220 15% 65%;
--accent: 210 100% 55%;
--accent-foreground: 0 0% 100%;
--destructive: 0 62.8% 50%;
--destructive-foreground: 0 0% 100%;
--border: 230 20% 20%;
--input: 230 20% 20%;
--ring: 250 70% 60%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
html {
scroll-behavior: smooth;
}
}