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
168
169
170
171
172
173
174
175
176
|
@import 'tailwindcss';
@import 'tw-animate-css';
@custom-variant dark (&:is(.dark *));
@theme {
--breakpoint-sm: 480px;
--breakpoint-md: 768px;
--breakpoint-xl: 1280px; /* старт xl с 1280 */
--breakpoint-2xl: 1920px; /* старт 2xl с 1920 */
--text-xs: 12px;
--text-sm: 14px;
--text-base: 16px;
--text-xs--line-height: 16px;
--text-sm--line-height: 19px;
--text-base--line-height: 22px;
}
:root {
--background: #05040a;
--foreground: #ffffff;
:focus {
outline: none;
}
--violet: #464199;
--violet-darker: #191635;
--light-violet: #8784c9;
--dark-indigo: #0d0c1c;
--red: #e64c4f;
--radius: 0.625rem;
--card: oklch(1 0 0);
--card-foreground: oklch(0.13 0.028 261.692);
--popover: oklch(1 0 0);
--popover-foreground: oklch(0.13 0.028 261.692);
--primary: oklch(0.21 0.034 264.665);
--primary-foreground: oklch(0.985 0.002 247.839);
--secondary: oklch(0.967 0.003 264.542);
--secondary-foreground: oklch(0.21 0.034 264.665);
--muted: oklch(0.967 0.003 264.542);
--muted-foreground: oklch(0.551 0.027 264.364);
--accent: oklch(0.967 0.003 264.542);
--accent-foreground: oklch(0.21 0.034 264.665);
--destructive: oklch(0.577 0.245 27.325);
--input: oklch(0.928 0.006 264.531);
--ring: oklch(0.707 0.022 261.325);
--chart-1: oklch(0.646 0.222 41.116);
--chart-2: oklch(0.6 0.118 184.704);
--chart-3: oklch(0.398 0.07 227.392);
--chart-4: oklch(0.828 0.189 84.429);
--chart-5: oklch(0.769 0.188 70.08);
--sidebar: oklch(0.985 0.002 247.839);
--sidebar-foreground: oklch(0.13 0.028 261.692);
--sidebar-primary: oklch(0.21 0.034 264.665);
--sidebar-primary-foreground: oklch(0.985 0.002 247.839);
--sidebar-accent: oklch(0.967 0.003 264.542);
--sidebar-accent-foreground: oklch(0.21 0.034 264.665);
--sidebar-border: oklch(0.928 0.006 264.531);
--sidebar-ring: oklch(0.707 0.022 261.325);
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-violet: var(--violet);
--color-violet-darker: var(--violet-darker);
--color-light-violet: var(--light-violet);
--color-dark-indigo: var(--dark-indigo);
--color-red: var(--red);
--color-sidebar-ring: var(--sidebar-ring);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar: var(--sidebar);
--color-chart-5: var(--chart-5);
--color-chart-4: var(--chart-4);
--color-chart-3: var(--chart-3);
--color-chart-2: var(--chart-2);
--color-chart-1: var(--chart-1);
--color-ring: var(--ring);
--color-input: var(--input);
--color-border: var(--border);
--color-destructive: var(--destructive);
--color-accent-foreground: var(--accent-foreground);
--color-accent: var(--accent);
--color-muted-foreground: var(--muted-foreground);
--color-muted: var(--muted);
--color-secondary-foreground: var(--secondary-foreground);
--color-secondary: var(--secondary);
--color-primary-foreground: var(--primary-foreground);
--color-primary: var(--primary);
--color-popover-foreground: var(--popover-foreground);
--color-popover: var(--popover);
--color-card-foreground: var(--card-foreground);
--color-card: var(--card);
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--radius-2xl: calc(var(--radius) + 8px);
--radius-3xl: calc(var(--radius) + 12px);
--radius-4xl: calc(var(--radius) + 16px);
}
@layer utilities {
.gradient-0 {
background-image: linear-gradient(89.91deg, #8784c9 0%, #464199 99.92%);
}
.gradient-1 {
background-image: linear-gradient(
284.32deg,
#ffafbd 20.33%,
#dae2f8 79.67%
);
}
.gradient-2 {
background-image: linear-gradient(267.9deg, #473b7b 0%, #30d2be 100%);
}
.gradient-3 {
background-image: linear-gradient(88.87deg, #c33764 0%, #1d2671 100%);
}
.gradient-4 {
background-image: linear-gradient(267.9deg, #134e5e 0%, #71b280 100%);
}
.gradient-5 {
background-image: linear-gradient(87.9deg, #423aa2 0%, #100626 100%);
}
.gradient-6 {
background-image: linear-gradient(87.9deg, #edf3f6 0%, #d9eaf4 100%);
}
.gradient-7 {
background-image: linear-gradient(
284.32deg,
#212121 20.33%,
#454545 79.67%
);
}
.gradient-8 {
background-image: linear-gradient(88.87deg, #610000 0%, #190a05 100%);
}
.gradient-9 {
background-image: linear-gradient(87.9deg, #ffc500 0%, #c21500 100%);
}
.gradient-10 {
background-image: linear-gradient(270deg, #6a11cb 0%, #69a1ff 100%);
}
.gradient-11 {
background-image: linear-gradient(267.9deg, #182848 0%, #4b6cb7 100%);
}
}
@layer base {
* {
@apply border-violet outline-ring/50;
font-size: 16px;
line-height: 22px;
}
html {
@apply scroll-smooth;
}
body {
@apply bg-background text-foreground;
}
button:not(:disabled),
[role='button']:not(:disabled) {
cursor: pointer;
}
}
|