-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
41 lines (41 loc) · 973 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
module.exports = {
mode: 'jit',
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js',
'content/**/*.md',
],
options: {
safelist: ['hover:tw-bg-facebook', 'hover:tw-bg-twitter', 'hover:tw-bg-linkedin', 'hover:tw-bg-pinterest']
}
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
'linkblue': '#2952a3', // hsl(220, 60%, 40%)
'linkpink': '#9D174D', // pink-800
'facebook': '#3b5999',
'twitter': '#55acee',
'linkedin': '#0077B5',
'pinterest': '#bd081c',
'instagram': '#e4405f',
'whatsapp': '#25D366',
'youtube': '#cd201f',
'telegram': '0088cc'
},
},
},
variants: {
extend: {},
},
plugins: [
// require('@tailwindcss/typography')
],
prefix: 'tw-',
}