-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./_drafts/*.html',
'./_includes/*.html',
'./_layouts/*.html',
'./_posts/*.md',
'./*.md',
'./*.html',
],
theme: {
fontFamily: {
rubik: ['Rubik', 'sans-serif'],
abel: ['Abel', 'sans-serif'],
molengo: ['Molengo', 'sans-serif'],
},
extend: {
colors: {
backgroundColor: '#FDFDFD',
primaryColor: '#7E23B3',
primaryColorDarker: '#480F7B',
bgContrastColor: '#FAD30B',
textColor: '#25063C',
textContrastColor: '#C63F75',
textContrastColorDarker: '#B61A54',
},
},
},
corePlugins: {
container: false
},
plugins: [
function ({ addComponents }) {
addComponents({
'.container': {
width: '100%',
'@screen sm': {
maxWidth: '640px',
},
'@screen md': {
maxWidth: '768px',
},
'@screen lg': {
maxWidth: '1024px',
},
'@screen xl': {
maxWidth: '1280px',
},
}
})
}
]
}