-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1023 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
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
theme: {
colors: {
scarlet: '#ff2400',
crimson: '#dc143c',
pomegranate: '#c0392b',
midnight: '#2c3e50',
'concrete-200': 'rgb(53, 70, 85)',
concrete: '#95a5a6',
clouds: '#ecf0f1',
greensea: '#16a085',
amethyst: '#9b59b6',
sunflower: '#f1c40f',
white: '#ffffff'
},
extend: {
fontFamily: {
sans: ["Montserrat", ...defaultTheme.fontFamily.sans],
handwritten: ['Birthstone Bounce', "cursive"],
},
},
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
function ({ addComponents }) {
addComponents({
'.container': {
maxWidth: '100%',
'@screen sm': {
maxWidth: '65ch',
},
}
})
}
],
purge: {
enabled: true,
layers: ['components', 'utilities'],
content: [
'./src/components/*.js',
'./src/pages/*.js',
],
},
}