-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
85 lines (84 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
defaultLineHeights: true,
standardFontWeights: true,
},
experimental: {
darkModeVariant: true,
},
dark: 'class',
purge: {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
},
theme: {
extend: {
colors: {
violet: '#5964E0',
'light-violet': '#939BF4',
'very-dark-blue': '#19202D',
midnight: '#121721',
'light-grey': '#F4F6F8',
grey: '#9DAEC2',
'dark-grey': '#6E8098',
'normal-grey': '#f2f2f2',
'checkbox-dark': 'rgba(255, 255, 255, 0.1)',
logo: {
1: '#DF6DAE',
2: '#3DB3D1',
3: '#3D3B94',
4: '#F0B62A',
5: '#E66D39',
6: '#FB7E66',
7: '#007CFF',
8: '#492A29',
9: '#60DCAD',
10: '#FF585F',
},
},
opacity: {
10: '0.1',
20: '0.2',
35: '0.35',
},
minHeight: {
card: '14.25rem',
52: '13rem',
35: '8.75rem',
},
maxWidth: {
76: '19rem',
183: '45.75rem',
},
spacing: {
'1px': '0.0625rem',
3.5: '0.875rem',
10.5: '2.625rem',
14.5: '3.625rem',
30: '7.5rem',
34: '8.5rem',
35: '8.75rem',
76: '19rem',
},
borderRadius: {
button: '0.3125rem',
},
lineHeight: {
button: '1.18rem',
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
brand: ['Kumbh Sans', ...defaultTheme.fontFamily.sans],
},
flex: {
4: '4 4 0%',
},
},
},
variants: {
backgroundOpacity: ['responsive', 'hover', 'focus', 'dark'],
},
plugins: [require('@tailwindcss/ui')],
}