-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
62 lines (56 loc) · 1.19 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
59
60
61
62
/** @type {import('tailwindcss/tailwind-config').TailwindConfig} */
module.exports = {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
height: {
90: '21rem',
128: '32rem',
240: '60rem'
},
maxHeight: { '90vh': '90vh' },
width: {
200: '50rem',
'80vw': '80vw'
},
maxWidth: {
xxxs: '12rem'
},
fontSize: {
xl: ['1.25rem', '1.5rem']
},
transitionProperty: {
width: 'width'
},
transitionTimingFunction: {
cubic: 'cubic-bezier(0.5, 1, 0.89, 1)'
}
},
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: '#07C597',
secondary: {
DEFAULT: '#f8fafe'
},
danger: {
DEFAULT: '#EC4899',
light: '#fad8e9'
},
black: '#0F0F0F',
white: 'white',
'white-transparent': 'rgba(255, 255, 255, 0.5)',
gray: {
darkest: '#1f2d3d',
dark: '#757575',
DEFAULT: '#c0ccda',
light: '#e0e6ed',
lightest: '#f9fafc'
}
},
fontFamily: {
primary: ['Inter', 'sans-serif']
}
},
plugins: []
};