-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (55 loc) · 1.01 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
module.exports = {
purge: {
content: [
'source/**/*.html',
'source/**/*.md',
'source/**/*.js',
'source/**/*.php',
'source/**/*.vue',
],
options: {
whitelist: [
/language/,
/hljs/,
],
},
},
theme: {
extend: {
colors: {
'unity-purple': '#382f77',
'unity-yellow': '#f4911e',
'unity-orange': '#d35400',
},
fontFamily: {
sans: [
'Chivo, Helvetica, Arial, sans-serif',
],
},
maxWidth: {
none: 'none',
'7xl': '80rem',
'8xl': '88rem'
},
},
textIndent: (theme, { negative }) => ({
...{
sm: '1rem',
// md: '3rem',
// lg: '4rem',
},
...negative({
sm: '1rem',
// md: '3rem',
// lg: '4rem',
}),
}),
},
variants: {
position: ['responsive', 'hover', 'focus'],
textIndent: ['responsive'],
},
plugins: [
require('tailwindcss-text-indent')(),
],
}