-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 904 Bytes
/
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
module.exports = {
theme: {
fontFamily: {
body: ["Montserrat, sans-serif"],
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
textColor: theme => {
return {
...theme("colors"),
"rt-green": "#05D477",
}
},
extend: {
colors: {
"rt-green": "#05D477",
"rt-green-light": "#06E07E",
"rt-green-dark": "#03703F",
"rt-pale-sky": "#657687",
"rt-white-smoke": "#F4F4F4",
},
fontSize: {
xxs: "0.675rem",
"8xl": "5rem",
"9xl": "6rem",
"10xl": "7rem",
},
},
},
variants: {},
plugins: [],
prefix: "",
important: false,
purge: ["./src/**/*.jsx"],
future: {
defaultLineHeights: true,
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
standardFontWeights: true,
},
}