-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (69 loc) · 1.61 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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
apathetic: {
50: '#eff3fe',
100: '#e2e7fd',
200: '#cbd3fa',
300: '#acb7f5',
400: '#8b91ee',
500: '#6f6ee6',
600: '#5e52d8',
700: '#5144be',
800: '#42399a',
900: '#39357a',
950: '#221f47'
},
careless: {
50: '#eef4ff',
100: '#e0ebff',
200: '#c7dafe',
300: '#a4c0fd',
400: '#809cf9',
500: '#6279f2',
600: '#3e4ce5',
700: '#3741cb',
800: '#2f38a4',
900: '#2e3781',
950: '#1b1f4b'
},
passion: {
50: '#FFF7ED',
100: '#FFEED5',
200: '#FED8AA',
300: '#FDBC74',
400: '#FB953C',
500: '#F97616',
600: '#EA5B0C',
700: '#C2440C',
800: '#9A3612',
900: '#7C2F12',
950: '#431507'
},
tea: {
50: '#f2f8f1',
100: '#e2eedd',
200: '#c4debc',
300: '#85ba7b',
400: '#6aa661',
500: '#478940',
600: '#326d2e',
700: '#275725',
800: '#21461f',
900: '#1b3a1a',
950: '#0e200e'
}
},
containers: {
'8xl': '88rem',
'9xl': '96rem'
}
}
},
// eslint-disable-next-line no-undef
plugins: [require('@tailwindcss/container-queries')]
}