This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.49 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
module.exports = {
mode: 'jit',
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: 'rgb(39,33,91)',
white: 'rgb(255,255,255)', // Important: In rgb() notation for Wallet pass compatibility!
black: 'rgb(0,0,0)', // Important: In rgb() notation for Wallet pass compatibility!
error: 'rgb(255,17,31)',
btn: {
DEFAULT: 'rgba(39,33,91,0.15)',
hover: 'rgba(39,33,91,0.25)',
active: 'rgba(39,33,91,0.35)'
},
checkbox: {
DEFAULT: 'rgba(39,33,91,0.15)',
hover: 'rgba(39,33,91,0.25)',
active: 'rgba(39,33,91,0.35)',
checked: {
DEFAULT: 'rgba(39,33,91,1.0)',
hover: 'rgba(39,33,91,0.9)',
active: 'rgba(39,33,91,0.8)',
}
},
walletGray: 'rgb(30,30,30)',
walletText: 'rgb(209,209,209)',
businesspass: '#110BF4',
'businesspass-button': {
DEFAULT: 'rgba(255,255,255,0.25)',
hover: 'rgba(255,255,255,0.35)',
active: 'rgba(255,255,255,0.45)',
},
},
fontFamily: {
body: ['-apple-system', 'sans-serif'],
display: ['apple-system', 'sans-serif']
},
},
variants: {},
plugins: [],
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js',
// TypeScript
'plugins/**/*.ts',
'nuxt.config.ts'
]
}
}