-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
58 lines (53 loc) · 1.4 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
56
57
58
let colors = require('tailwindcss/colors')
delete colors['lightBlue'] // <-----
colors = { ...colors, ...{ transparent: 'transparent' } }
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
minHeight: {
auto: 'auto',
'0': '0',
'1/10': '20%',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
'screen': '100vh'
},
fontFamily: {
'light': ['CircularStd-Light'],
'book': ['CircularStd-Book'],
'medium': ['CircularStd-Medium'],
'bold': ['CircularStd-Bold'],
'black': ['CircularStd-Black'],
}
},
colors: {
...colors,
'a': '#111111',
'input-hover': '#ebecf0',
'input-border': '#dfe1e6',
'input-bg': '#f4f5f7',
'input-color': '#172b4d'
},
boxShadow: {
modal: 'rgb(0 0 0 / 9%) 0px 3px 12px',
small: 'rgb(0 0 0 / 7%) 0px 5px 10px',
large: 'rgb(0 0 0 / 7%) 0px 5px 20px',
'large-modal': 'rgb(0 0 0 / 50%) 0px 16px 70px'
},
},
variants: {
variants: {
backgroundColor: ({ after }) => after(['disabled']),
opacity: ({ after }) => after(['disabled']),
textColor: ({ after }) => after(['disabled']),
cursor: ({ after }) => after(['disabled']),
extend: {},
},
extend: {
},
},
}