-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtailwind.config.js
38 lines (35 loc) · 1018 Bytes
/
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
module.exports = {
content: ['./packages/renderer/index.html', './packages/renderer/src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
highlight: '#FF5930',
white: '#f2f2f2',
body: 'var(--body)',
primary: '#7230FF',
black1: '#0D1118',
black2: '#141C25',
black3: 'rgba(255, 255, 255, 0.1)',
inputBorder: 'var(--inputBorder)',
modalOverlay: '#777F93',
gradientCoolMint: 'linear-gradient(180deg, #696EFF 0%, #BFEEE8 100%)',
gradientGrapeGum: 'linear-gradient(180deg, #696EFF 0%, #F7ABFF 100%)',
},
},
},
variants: {
extend: {
backgroundColor: ['active'],
textColor: ['active'],
ringWidth: ['active', 'focus-visible'],
ringColor: ['active', 'focus-visible'],
opacity: ['disabled'],
cursor: ['disabled'],
borderWidth: ['last'],
},
},
plugins: [],
};