forked from mi-gan-zi/FE-MiGanZi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (62 loc) · 1.35 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
/** @type {import('tailwindcss').Config} */
const foundationColor = {
"st-black": "#000000",
"st-white": "#FFFFFF",
"st-gray-10": "#0f0f0f",
"st-gray-09": "#333333",
"st-gray-08": "#3D3D3D",
"st-gray-07": "#6F6F6F",
"st-gray-06": "#8B8B8B",
"st-gray-05": "#A5A5A5",
"st-gray-04": "#C1C1C1",
"st-gray-03": "#DFDFDF",
"st-gray-02": "#F5F4F3",
"st-gray-01": "#F7F7F7",
"st-trans": "transparent",
"st-yellow": "#FEE500",
};
const semanticColos = {
"alert-red": "#F22222",
"warning-gold": "#FFB525",
"complete-green": "#00C950",
"active-blue": "#007DF0",
};
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
"suit-variable": "suit-variable",
},
width: {
390: "24rem",
},
height: {
59: "4rem",
90: "6rem",
},
colors: {
cityColor: "#dfe6e9",
},
},
backgroundColor: {
...foundationColor,
...semanticColos,
},
colors: {
...foundationColor,
...semanticColos,
},
// animation: {
// "spin-slow": "spin 3s linear infinite",
// },
// checkbox: {
// display: "inline-block",
// verticalAlign: "top",
// flexShrink: 0,
// borderWidth: 0,
// borderRadius: 0,
// },
},
plugins: [require("tailwind-scrollbar-hide")],
};