This repository was archived by the owner on Dec 5, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 364
Expand file tree
/
Copy pathtailwind.css
More file actions
180 lines (169 loc) · 4.86 KB
/
tailwind.css
File metadata and controls
180 lines (169 loc) · 4.86 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
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
177
178
179
180
@import 'tailwindcss';
@import "@nuxt/ui";
@config "../../tailwind.config.ts";
@custom-variant dark (&:where(.dark, .dark *));
/*
The default border color has changed to `currentcolor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentcolor);
}
}
@utility text-shadow-border {
text-shadow:
1px 1px 0 rgb(var(--text-color)),
1px -1px 0 rgb(var(--text-color)),
-1px 1px 0 rgb(var(--text-color)),
-1px -1px 0 rgb(var(--text-color)),
1px 0px 0 rgb(var(--text-color)),
0px 1px 0 rgb(var(--text-color)),
-1px 0px 0 rgb(var(--text-color)),
0px -1px 0 rgb(var(--text-color)),
4px 4px rgb(var(--text-color));
}
@utility container-fluid {
@apply grow relative w-full max-w-none mx-auto my-0 md:px-10 px-5;
}
@layer base {
:root {
--white: #ffffff;
--black: #000000;
--k-accent-light-3: #ffaee1;
--steps-active-color: 97 136 231;
}
:root {
/* $navbar-desktop-min-height */
--navbar-desktop: 80px;
/* $navbar-mobile-min-height */
--navbar-mobile: 64px;
}
:root,
:root .light {
--text-color: 0 0 0;
--text-color-inverse: var(--white);
--border-color: var(--black);
--background-color: var(--white);
--background-color-inverse: #191718;
--link-hover: #6b6b6b;
--k-accent: #ff7ac3;
--k-accent2: #ff7ac3;
--k-accent-light: #ffe5f3;
--k-accent-hover: #ffe5f3;
--k-accent-light-2: #ffe5f3;
--k-accent-light-2-dark: #363234;
--k-accent-light-2-dark-head: #191718;
--k-accent-light-2-dark-paragraph: #191718;
--k-green: #04af00;
--k-green-light: #f3fbf3;
--k-red: #ff5757;
--k-orange: #cf9a10;
--k-orange-light: #FFD379;
--k-orange2: #B88910;
--k-orange3: #875100;
--k-orange4: #DD840B;
--k-red-accent: #ffb6b6;
--k-red-accent-2: #ffe6e6;
--k-grey: #999999;
--k-grey-fix: #999999;
--k-grey-light: 245 245 245;
--k-pink: #ffb6ef;
--k-yellow: #feffb6;
--k-yellow-light: #FEF3E1;
--k-blue-accent: #b6cbff;
--k-aqua-blue: #cafdf4;
--k-green-accent: #c2ffac;
--k-green-accent-2: #e6f7e6;
--k-hover-grey: #6b6b6b;
--k-blue: #6188e7;
--k-blue-hover: #3567e0;
--k-blue-light: #e8edfb;
--k-primary: #ff7ac3;
--k-primary-light: #fff0f8;
--k-shade: 204 204 204;
--k-shade2: #cccccc;
--k-purple: #6326A2;
--k-purple-accent: #F1E8FD;
--placeholder-color: #cccccc;
--primary-shadow: 4px 4px #000;
--disabled: #f3f3f3;
--card-border-color: #999999;
--card-border-color-light: #cccccc;
--green-border-color: #04af00;
--blue-accent-bg-color: #b6cbff;
--blue-light-hover-color: #e8edfb;
--card-hover-opacity: 0.85;
--separator-line-color: #cccccc;
--toggle-primary: #ff7ac3;
--toggle-active-switch: #d9d9d9;
--purple-light-color: #DFD0FB;
--purple-dark-color: #805DC3;
}
.dark {
--black: #191718;
--text-color: 255 255 255;
--text-color-inverse: var(--black);
--background-color: #191718;
--background-color-inverse: var(--white);
--link-hover: #cccccc;
--border-color: var(--white);
--k-accent: #191718;
--k-accent-light: #ff7ac3;
--k-accent2: var(--white);
--k-accent-hover: #363234;
--k-accent-light-2: #363234;
--k-accent-light-2-dark: var(--white);
--k-accent-light-2-dark-head: var(--white);
--k-accent-light-2-dark-paragraph: #b9b9b9;
--k-red-accent: #b52c2c;
--k-red-accent-2: #390b0b;
--k-grey: #cccccc;
--k-grey-fix: #999999;
--k-grey-light: 31 31 31;
--k-pink: #7a2a68;
--k-orange-light: #3F3500;
--k-orange2: #CF9A10;
--k-orange3: #c79c37;
--k-orange4: #B07219;
--k-yellow: #363234;
--k-yellow-light: #3F3500;
--k-blue-accent: #2e50a2;
--k-aqua-blue: #106153;
--k-green-light: #0a3009;
--k-green-accent: #056a02;
--k-green-accent-2: #0a3009;
--k-blue-light: #363234;
--k-primary-light: #363234;
--k-shade: 153 153 153;
--k-shade2: #454545;
--k-purple: #D2B5F9;
--k-purple-accent: #251B41;
--primary-shadow: 4px 4px #fff;
--disabled: var(--black);
--card-border-color: #6b6b6b;
--card-border-color-light: #6b6b6b;
--green-border-color: #056a02;
--blue-accent-bg-color: #363234;
--blue-light-hover-color: #363234;
--blue-light-cards: #121d39;
--card-hover-opacity: 0.8;
--separator-line-color: #6b6b6b;
--toggle-primary: var(--white);
--toggle-active-switch: #363234;
--purple-light-color: #5B428D;
--purple-dark-color: #E2D6F7;
}
*,
:after,
:before {
border: 0 solid currentColor;
}
}