-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
84 lines (84 loc) · 1.92 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
module.exports = {
content: ["./pages/**/*.{js,tsx}", "./components/**/*.{js,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
"deep-sky-blue": "#03A9F4",
"fruit-salad": "#4CAF50",
"orange-peel": "#FF9800",
"link": "#3B4FE4",
"heading": "#1A1A1A",
"body": "#6E7180",
"dark": "#202020",
"gray-dark": "#2D2D2D"
},
gridTemplateColumns: {
// Simple 16 column grid
20: "repeat(20, minmax(0, 1fr))"
},
scale: {
67: "0.67",
70: "0.70",
80: "0.80",
85: "0.85"
}
},
fontFamily: {
sans: ['"Myriad Pro"', "sans-serif"],
body: ['"Myriad Pro"']
},
fontSize: {
"198px": ["198px"],
"156px": ["156px"],
"120px": ["120px"],
"96px": ["96px"],
"90px": ["90px"],
"84px": ["84px"],
"78px": ["78px"],
"72px": ["72px"],
"66px": ["66px"],
"60px": ["60px"],
"54px": ["54px"],
"48px": ["48px"],
"42px": ["42px"],
"36px": ["36px"],
"30px": ["30px"],
"28px": ["28px"],
"26px": ["26px"],
"24px": ["24px"],
"22px": ["22px"],
"20px": ["20px"],
"18px": ["18px"],
"16px": ["16px"],
"15px": ["15px"],
"14px": ["14px"],
"12px": ["12px"],
"10px": ["10px"],
"8px": ["8px"]
},
screens: {
"xs": "428px",
"sm": "640px",
"md": "768px",
"mdm": "850px",
"lg": "1024px",
"lgm": "1200px",
"xl": "1280px",
"2xl": "1536px",
"mxs": { max: "428px" },
"msm": { max: "640px" },
"mmd": { max: "768px" },
"mlg": { max: "1024px" },
"mxl": { max: "1280px" },
"m2xl": { max: "1536px" }
},
maxWidth: {
screen: "100%",
regular: "95%",
medium: "75%",
small: "50%"
}
},
plugins: [require("@tailwindcss/typography"), require("autoprefixer")]
};