generated from emmanuelubachi/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththeme.css
205 lines (156 loc) · 4.01 KB
/
theme.css
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.background-light850_dark100 {
@apply bg-light-850 dark:bg-dark-100;
}
.background-light900_dark200 {
@apply bg-light-900 dark:bg-dark-200;
}
.background-light900_dark300 {
@apply bg-light-900 dark:bg-dark-300;
}
.background-light800_darkgradient {
@apply bg-light-800 dark:dark-gradient;
}
.background-light800_dark400 {
@apply bg-light-800 dark:bg-dark-400 !important;
}
.background-light700_dark400 {
@apply bg-light-700 dark:bg-dark-400;
}
.background-light700_dark300 {
@apply bg-light-700 dark:bg-dark-300;
}
.background-light800_dark400 {
@apply bg-light-800 dark:bg-dark-400;
}
.background-light800_dark300 {
@apply bg-light-800 dark:bg-dark-300 !important;
}
.text-dark100_light900 {
@apply text-dark-100 dark:text-light-900 !important;
}
.text-dark200_light900 {
@apply text-dark-200 dark:text-light-900;
}
.text-dark200_light800 {
@apply text-dark-200 dark:text-light-800 !important;
}
.text-dark300_light700 {
@apply text-dark-300 dark:text-light-700;
}
.text-dark400_light700 {
@apply text-dark-400 dark:text-light-700;
}
.text-dark500_light700 {
@apply text-dark-500 dark:text-light-700 !important;
}
.text-dark500_light500 {
@apply text-dark-500 dark:text-light-500;
}
.text-dark300_light900 {
@apply text-dark-300 dark:text-light-900 !important;
}
.text-dark400_light800 {
@apply text-dark-400 dark:text-light-800;
}
.text-light400_light500 {
@apply text-light-400 dark:text-light-500 !important;
}
.text-dark400_light500 {
@apply text-dark-400 dark:text-light-500;
}
.text-dark400_light900 {
@apply text-dark-400 dark:text-light-900 !important;
}
.text-light400_light500 {
@apply text-light-400 dark:text-light-500 !important;
}
.light-border {
@apply border-light-800 dark:border-dark-300;
}
.light-border-2 {
@apply border-light-700 dark:border-dark-400 !important;
}
.h1-bold {
@apply text-[30px] font-bold leading-[42px] tracking-tighter;
}
.h2-bold {
@apply text-[24px] font-bold leading-[31.2px];
}
.h2-semibold {
@apply text-[24px] font-semibold leading-[31.2px];
}
.h3-bold {
@apply text-[20px] font-bold leading-[26px];
}
.h3-semibold {
@apply text-[20px] font-semibold leading-[24.8px];
}
.base-medium {
@apply text-[18px] font-medium leading-[25.2px];
}
.base-semibold {
@apply text-[18px] font-semibold leading-[25.2px];
}
.base-bold {
@apply text-[18px] font-bold leading-[140%];
}
.paragraph-regular {
@apply text-[16px] font-normal leading-[22.4px];
}
.paragraph-medium {
@apply text-[16px] font-medium leading-[22.4px];
}
.paragraph-semibold {
@apply text-[16px] font-semibold leading-[20.8px];
}
.body-regular {
@apply text-[14px] font-normal leading-[19.6px];
}
.body-medium {
@apply text-[14px] font-medium leading-[18.2px];
}
.body-semibold {
@apply text-[14px] font-semibold leading-[18.2px];
}
.small-regular {
@apply text-[12px] font-normal leading-[15.6px];
}
.small-medium {
@apply text-[12px] font-medium leading-[15.6px];
}
.small-semibold {
@apply text-[12px] font-semibold leading-[15.6px];
}
.subtle-medium {
@apply text-[10px] font-medium leading-[13px] !important;
}
.subtle-regular {
@apply text-[10px] font-normal leading-[13px];
}
.placeholder {
@apply placeholder:text-light-400 dark:placeholder:text-light-500;
}
.invert-colors {
@apply invert dark:invert-0;
}
.shadow-light100_dark100 {
@apply shadow-light-100 dark:shadow-dark-100;
}
.shadow-light100_darknone {
@apply shadow-light-100 dark:shadow-none;
}
.primary-gradient {
background: linear-gradient(129deg, #ff7000 0%, #e2995f 100%);
}
.dark-gradient {
background: linear-gradient(
232deg,
rgba(23, 28, 35, 0.41) 0%,
rgba(19, 22, 28, 0.7) 100%
);
}
}