-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
101 lines (101 loc) · 1.68 KB
/
tailwind.config.js
File metadata and controls
101 lines (101 loc) · 1.68 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
module.exports = {
theme: {
fontFamily: {
main: [
"Inter",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Helvetica",
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"'
],
sans: [
"Inter",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Helvetica",
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"'
],
sub: [
"Manrope",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Helvetica",
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"'
],
mono: [
"SFMono-Regular",
"Menlo",
"Consolas",
'"Liberation Mono"',
"Courier",
"monospace"
]
},
extend: {
borderRadius: {
DEFAULT: "14px",
lg: "20px",
full: "9999px"
},
colors: {
black: {
DEFAULT: "#191b1d" // 800
},
white: {
DEFAULT: "#fefefe" // 800
},
grey: {
500: "#393b3f",
400: "#6b6d74",
300: "#a6a9b1",
200: "#e7e9ee",
100: "#f7f7fa"
},
malibu: {
DEFAULT: "#6284ff"
},
primary: {
DEFAULT: "#6284FF",
50: "#f6f9fb",
100: "#e2f0fc",
200: "#c3d9fa",
300: "#99b6f3",
400: "#6284ff",
500: "#5d6be2",
600: "#4d4ed4",
700: "#3b3bb5",
800: "#292887",
900: "#171956"
},
gray: {
DEFAULT: "#6b6d74",
50: "#fefefe",
100: "#abadb3",
200: "#f7f7fa",
300: "#e7e9ee",
400: "#a6a9b1",
500: "#6b6d74",
600: "#393b3f",
700: "#393b3f",
800: "#26272A",
900: "#191b1d"
}
}
}
}
};