-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 loc) · 1.22 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
// Copyright 2018-2021 evolution.land authors & contributors
// SPDX-License-Identifier: Apache-2.0
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
keyframes: {
visibleslow: {
'0%': { visibility: 'hidden', opacity: 0 },
'100%': { visibility: 'visible', opacity: 1 },
},
hiddenslow: {
'0%': { visibility: 'visible', opacity: 1 },
'100%': { visibility: 'hidden', opacity: 0 },
},
},
animation: {
'visible-slow': 'visibleslow 0.5s ease 1 normal forwards',
'invisible-slow': 'hiddenslow 0.5s ease 1 normal forwards',
},
color: {
'primary': '#FFFFFF'
},
backgroundColor: {
'pannel': '#323A32',
'modal': '#323A32',
'nft-item': '#3F4548'
}
},
// eslint-disable-next-line global-require, import/extensions
screens: require('./src/config/breakpoints/breakpoints.js')
},
variants: {
extend: {
cursor: ['disabled'],
scale: ['active'],
opacity: ['active'],
boxShadow: ['active'],
borderColor: ['active'],
},
},
plugins: [],
}