-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
colors: {
'b1': '#F0F8FF',
'b2': '#E8F1FF',
'b3': '#C1D4FF',
'b4': '#9CB3FC',
'b5': '#8797E4',
'b6': '#717BDC',
'b7': '#6167D6',
'b8': '#5252D0',
'b9': '#3C3CC3',
'b10': '#2C2CAA',
'b11': '#231E9B',
'b12': '#1A1689',
'b13': '#120E76',
'b14': '#090654',
'b15': '#020038',
'b16': '#010022',
'c1': '#F7F7F7',
'c2': '#F2F2F2',
'c3': '#EBEBEB',
'c4': '#DEDEDE',
'c5': '#CCCCCC',
'c6': '#B2B2B2',
'c7': '#9C9C9C',
'c8': '#717171',
'c9': '#595959',
'c10': '#404040',
'c11': '#2E2E2E',
'c12': '#1A1A1A',
'c13': '#0E0E0E',
},
},
},
plugins: [],
}