-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
100 lines (98 loc) · 2.16 KB
/
tailwind.config.js
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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: ["./src/**/*.js", "./src/**/*.jsx", "./src/**/*.ts", "./src/**/*.tsx"],
theme: {
extend: {
backgroundOpacity: {
90: "0.95",
},
screens: {
lg: "1340px",
},
fontFamily: {
display: ["Merriweather", "sans-serif"],
body: ["Open Sans", "sans-serif"],
sans: [
"Open Sans",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
serif: [
"Merriweather",
"Georgia",
"Cambria",
'"Times New Roman"',
"Times",
"serif",
],
mono: [
"Menlo",
"Monaco",
"Consolas",
'"Liberation Mono"',
'"Courier New"',
"monospace",
],
},
colors: {
red: {
lighter: "#FBDADA",
ligh: "#F49090",
default: "#ED4747",
},
blue: {
lighter: "#DEEDF7",
light: "#ADD2EB",
default: "#59A5D8",
},
yellow: {
lighter: "#FFF3D6",
light: "#FFE7AD",
default: "#FFD166",
},
green: {
lighter: "#D7FEF4",
light: "#60FBD2",
default: "#06D6A0",
},
navy: "#133C55",
white: "#FFFFFF",
gray: {
100: "#F8F9FA",
200: "#E9ECEF",
300: "#DEE2E6",
400: "#CED4DA",
500: "#ADB5BD",
600: "#6C757D",
700: "#495057",
800: "#343A40",
900: "#212529",
},
},
scale: {
101: "1.01",
102: "1.02",
103: "1.03",
},
transitionTimingFunction: {
"jk-custom": "cubic-bezier(0.165, 0.840, 0.440, 1.000)",
},
},
},
variants: {},
plugins: [],
}