forked from subscan-explorer/subscan-multisig-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 901 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
39
40
41
module.exports = {
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
backgroundImage: (_) => ({
darwinia: 'linear-gradient(-45deg, #fe3876 0%, #7c30dd 71%, #3a30dd 100%)',
}),
backgroundColor: (_) => ({
crab: '#7C30DD',
pangolin: '#5745DE',
polkadot: '#e6007a',
kusama: '#000',
}),
borderRadius: {
xl: '10px',
lg: '8px',
},
colors: (_) => ({
pangolin: {
main: '#5745DE',
},
crab: {
main: '#7C30DD',
},
darwinia: {
main: '#3a30dd',
},
polkadot: {
main: '#e6007a',
},
kusama: {
main: '#000',
},
}),
height: {
'screen-sub-head': 'calc(100vh - 68px)',
'screen-sub-head-footer': 'calc(100vh - 2 * 68px)',
},
},
},
};