-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmain.css
More file actions
53 lines (48 loc) · 1.8 KB
/
Copy pathmain.css
File metadata and controls
53 lines (48 loc) · 1.8 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
@import "tailwindcss";
@import "@nuxt/ui";
@import "./safelist.css";
@theme static {
--font-sans: 'Public Sans', sans-serif;
--font-serif: 'Georgia', Cambria, 'Times New Roman', Times, serif;
--font-mono: 'SFMono-Regular', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
--font-weight-thin: 100;
--font-weight-extralight: 200;
--font-weight-light: 300;
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--font-weight-extrabold: 800;
--font-weight-black: 900;
--color-green-50: #effdf5;
--color-green-100: #d9fbe8;
--color-green-200: #b3f5d1;
--color-green-300: #75edae;
--color-green-400: #00dc82;
--color-green-500: #00c16a;
--color-green-600: #00a155;
--color-green-700: #007f45;
--color-green-800: #016538;
--color-green-900: #0a5331;
--color-green-950: #052e16;
}
:root {
font-family: var(--font-sans, 'Public Sans', sans-serif);
font-weight: var(--font-weight-normal, 400);
}
code,
pre,
kbd,
samp {
font-family: var(--font-mono, 'SFMono-Regular', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
}
.font-thin { font-weight: var(--font-weight-thin, 100); }
.font-extralight { font-weight: var(--font-weight-extralight, 200); }
.font-light { font-weight: var(--font-weight-light, 300); }
.font-normal { font-weight: var(--font-weight-normal, 400); }
.font-medium { font-weight: var(--font-weight-medium, 500); }
.font-semibold { font-weight: var(--font-weight-semibold, 600); }
.font-bold { font-weight: var(--font-weight-bold, 700); }
.font-extrabold { font-weight: var(--font-weight-extrabold, 800); }
.font-black { font-weight: var(--font-weight-black, 900); }
.font-heavy { font-weight: var(--font-weight-black, 900); }