-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1.13 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
const { fontFamily, spacing } = require("tailwindcss/defaultTheme");
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: 'class', // or 'media' or false
theme: {
extend: {
colors: {
orange: {
100: "#FEECDC",
200: "#FCD9BD",
300: "#FDBA8C",
400: "#FF8A4C",
500: "#FF5A1F",
600: "#D03801",
700: "#B43403",
800: "#8A2C0D",
900: "#771D1D"
},
},
maxHeight: {
...spacing
},
fontFamily: {
sans: ["Open Sans", "Source Sans Pro", ...fontFamily.sans]
},
borderRadius: {
'5xl':'5rem'
},
skew: {
'4':'4deg'
},
rotate: {
'4':'4deg'
}
},
},
variants: {
extend: {
boxShadow: ["responsive", "hover", "focus", "group-hover"],
backgroundAttachment: ['responsive'],
backgroundColor: ['responsive', 'dark', 'group-hover', 'focus-within', 'hover', 'focus'],
borderColor: ['responsive', 'dark', 'group-hover', 'focus-within', 'hover', 'focus'],
},
},
plugins: [],
}