-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
63 lines (63 loc) · 1.36 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
module.exports = {
"theme": {
"extend": {
"colors": {
"Success": {
"300": "#199033",
"500": "#32A94C",
"700": "#4CC366"
},
"Gray": {
"500": "#595959",
"700": "#999999",
"900": "#D9D9D9",
"Black": "#000000",
"White": "#FFFFFF"
},
"Danger": {
"300": "#A22020",
"500": "#BF2626",
"700": "#E14747"
},
"Primary": {
"100": "#003EB3",
"300": "#0074F0",
"500": "#14A9FF",
"700": "#85DCFF"
},
"foreground": "#000000",
"background": "#FFFFFF"
},
"spacing": {
"ThreeUnits": "48px",
"FiveUnits": "80px",
"OneAndHalfUnits": "24px",
"FourUnits": "64px",
"HalfUnit": "8px",
"SixUnits": "96px",
"Unit": "16px",
"TwoUnits": "32px"
},
"borderRadius": {
"Radius2": "2px",
"Round": "50%",
"Radius8": "8px",
"Radius4": "4px"
},
"scale": {
"Small": "48px",
"XLarge": "192px",
"MaxWidth": "1400px",
"Large": "144px",
"XXLarge": "288px",
"Medium": "96px",
"XSmall": "16px"
}
}
},
"plugins": [],
"content": [
"./src/**/*.{html,js,ts,jsx,tsx}",
"./*.html"
]
}