-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
56 lines (56 loc) · 1.14 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
module.exports = {
purge: ['./app/packs/apps/**/*.tsx', './app/views/**/*.html.erb'],
darkMode: 'class',
theme: {
minHeight: {
'screen-1/2': '50vh',
'screen-1/3': '33vh',
'screen-2/3': '67vh',
'screen-1/4': '25vh',
'screen-3/4': '75vh',
screen: '100vh',
1: '0.25rem',
2: '0.5rem',
4: '1rem',
8: '2rem',
16: '4rem',
32: '8rem',
64: '16rem',
72: '18rem',
80: '20rem',
96: '24rem',
},
maxHeight: {
'screen-1/2': '50vh',
'screen-1/3': '33vh',
'screen-2/3': '67vh',
'screen-1/4': '25vh',
'screen-3/4': '75vh',
screen: '100vh',
1: '0.25rem',
2: '0.5rem',
4: '1rem',
8: '2rem',
16: '4rem',
32: '8rem',
64: '16rem',
72: '18rem',
80: '20rem',
96: '24rem',
},
textColor: (theme) => ({
...theme('colors'),
btc: '#e5912b',
}),
backgroundColor: (theme) => ({
...theme('colors'),
dark: '#1b1c1e',
btc: '#e5912b',
}),
extend: {},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/line-clamp')],
};