-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 809 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 809 Bytes
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
module.exports = {
purge: {
enabled: false,
//content: [
//'./components/**/*.{vue,js}',
//'./layouts/**/*.vue',
//'./pages/**/*.vue',
//]
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
// 100: '#606EAF',
100: '#A4ABC9',
200: '#454778',
300: '#303154'
},
secondary: {
100: '#E2E2D5',
200: '#888883'
},
accent1: {
100: '#DDDDDD',
200: '#C9C9C9'
},
accent2: '#66CBFF',
warning: '#ff7b00',
background: '#EAEAEA',
},
fontFamily: {
body: ['Nunito']
}
},
},
variants: {
// extend: {},
opacity: ({ after }) => after(['disabled'])
},
plugins: [],
}