-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (50 loc) · 929 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
46
47
48
49
50
module.exports = {
mode: 'jit',
purge: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/layouts/**/*.{js,ts,jsx,tsx}',
// Add more here
],
darkMode: false, // or 'media' or 'class'
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '10rem',
lg: '15rem',
xl: '20rem',
'2xl': '15rem',
},
},
fontFamily: {
serif: ['Merriweather'],
sans: ['Muli']
},
extend: {
colors: {
primary: {
DEFAULT: '#f28482',
light: '#f5cac3'
},
secondary: {
DEFAULT: '#f6bd60'
},
accent: "#84a59d",
light: "#f7ede2",
black: "#1C1D21"
}
}
},
variants: {
extend: {},
},
plugins: [
require('tailwind-css-variables')(
{
colors: "color"
}
)
],
}