-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
66 lines (66 loc) · 1.46 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
module.exports = {
prefix: "",
important: false,
separator: ":",
jit: true,
theme: {
extend: {
fontFamily: {
nunito: ["Nunito", "sans-serif"],
abel: ["Abel"]
},
colors: {
tuna: {
"50": "#f5f5f6",
"100": "#eaebed",
"200": "#cbcdd1",
"300": "#abafb6",
"400": "#6c737f",
"500": "#2d3748",
"600": "#293241",
"700": "#222936",
"800": "#1b212b",
"900": "#161b23"
},
purple: {
"50": "#f6f6f9",
"100": "#ededf2",
"200": "#d3d3df",
"300": "#b8b8cb",
"400": "#8382a5",
"500": "#4e4d7e",
"600": "#464571",
"700": "#3b3a5f",
"800": "#2f2e4c",
"900": "#26263e"
},
lightblue: {
"50": "#fdfeff",
"100": "#fcfeff",
"200": "#f7fcff",
"300": "#f2faff",
"400": "#e8f6ff",
"500": "#def2ff",
"600": "#c8dae6",
"700": "#a7b6bf",
"800": "#859199",
"900": "#6d777d"
},
golden: {
"50": "#fdfaf4",
"100": "#fbf6e8",
"200": "#f6e8c6",
"300": "#f1d9a4",
"400": "#e6bd60",
"500": "#dba11c",
"600": "#c59119",
"700": "#a47915",
"800": "#836111",
"900": "#6b4f0e"
}
}
}
},
variants: {},
plugins: []
};