-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
70 lines (68 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Docs Nuxt: https://tailwindcss.nuxtjs.org/
*/
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
theme: {
extend: {
fontFamily: {
// First add to nuxt config
sans: ['Work Sans', ...defaultTheme.fontFamily.sans],
serif: ['Montserrat', ...defaultTheme.fontFamily.sans]
},
colors: {
primary: {
100: '#ddefde',
200: '#c9ebcb',
300: '#b9e7bb',
400: '#a3d5a6',
500: '#88b78b',
600: '#5f9162',
700: '#427045',
800: '#244226',
900: '#112413'
},
social: {
twitter: '#1da1f2',
facebook: '#1877f2',
instagram: '#e4405f',
mail: '#005ff9',
whatsapp: '#25D366'
}
},
height: {
'10v': '10vh',
'20v': '20vh',
'30v': '30vh',
'40v': '40vh',
'50v': '50vh',
'60v': '60vh',
'70v': '70vh',
'80v': '80vh',
'90v': '90vh',
'100v': '100vh'
}
}
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio')
],
purge: {
// Learn more on https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
enabled: process.env.NODE_ENV === 'production',
content: [
'node_modules/components-helpdev-storyblok/**/*.vue',
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'node_modules/vue-tailwind/dist/*.js',
'nuxt.config.js'
]
}
};