-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
79 lines (78 loc) · 1.82 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
71
72
73
74
75
76
77
78
79
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
purge: [
'./assets/**/*.js',
'./components/**/*.vue',
'./components/**/*.js',
'./hooks/**/*.ts',
'./layouts/**/*.vue',
'./middleware/**/*.js',
'./plugins/**/*.js',
'./pages/**/*.vue',
],
theme: {
extend: {
colors: {
...defaultTheme.colors,
},
},
},
// theme: {
// extend: {
// colors: {
// gray: {
// lightest: '#fafafa',
// lighter: '#f5f5f5',
// light: '#e4e4e4',
// default: '#ccc',
// dark: '#999',
// darker: '#666',
// darkest: '#333',
// },
// red: {
// lighter: '#ffe1e1',
// light: '#ffa5a5',
// default: '#ff6a6a',
// },
// orange: {
// lighter: '#ffe3cb',
// light: '#ffbf8a',
// default: '#eb8f43',
// },
// yellow: {
// lighter: '#ffedbb',
// light: '#ffdc7b',
// default: '#ffcc3f',
// },
// green: {
// lighter: '#d8ffec',
// light: '#8be0b6',
// default: '#4ec189',
// },
// blue: {
// lighter: '#e2ecff',
// light: '#9cbaf2',
// default: '#477de9',
// },
// purple: {
// lighter: '#ebdfff',
// light: '#be94ff',
// default: '#8e45ff',
// },
// },
// fill: theme => theme('colors'),
// },
// },
variants: {
margin: ['responsive', 'first', 'last'],
},
}