-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.2 KB
/
Copy pathtailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.2 KB
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
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
],
theme: {
extend: {
colors: {
primary: {
50: '#e6f2ff',
100: '#cce4ff',
200: '#99c9ff',
300: '#66adff',
400: '#3392ff',
500: '#0077ff',
600: '#005fcc',
700: '#004799',
800: '#003066',
900: '#001833',
},
success: {
500: '#34C759',
},
warning: {
500: '#FF9500',
},
error: {
500: '#FF3B30',
},
neutral: {
50: '#f8f9fa',
100: '#f1f3f5',
200: '#e9ecef',
300: '#dee2e6',
400: '#ced4da',
500: '#adb5bd',
600: '#868e96',
700: '#495057',
800: '#343a40',
900: '#212529',
},
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
transitionProperty: {
'height': 'height',
'spacing': 'margin, padding',
}
},
},
plugins: [],
}