-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.cjs
53 lines (53 loc) · 1.12 KB
/
tailwind.config.cjs
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
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
future: {
hoverOnlyWhenSupported: true
},
theme: {
extend: {
colors: {
purple: {
50: '#DFCCFF',
100: '#C099FF',
200: '#A066FF',
300: '#904DFF',
400: '#8133FF',
500: '#7400FF',
600: '#4E00CC',
700: '#4400B3',
800: '#310080',
900: '#270066'
},
bitcoin: {
orange: '#f2a900',
yellow: '#FFF300'
},
utility: {
// success: '#39F35B',
error: '#FF1F39',
// pending: '#FCBA04'
success: '#31FF00',
// error: '#FF0031',
pending: '#FFCE00'
},
black: '#000000',
white: '#ffffff',
neutral: {
50: '#fafafa',
900: '#171717'
},
transparent: 'transparent'
},
screens: {
xs: '420px'
},
height: {
screen: ['100vh', '100dvh']
}
}
},
variants: {
width: ['responsive', 'hover', 'focus']
},
plugins: [require('@tailwindcss/forms')]
}