-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (48 loc) · 997 Bytes
/
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
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
purge: ['./src/**/*.tsx', './src/**/*.ts'],
darkMode: false,
theme: {
extend: {
boxShadow: {
right: '0 0 50px rgba(0, 0, 0, 0.5)',
},
minHeight: {
'screen-1/4': '25vh',
'screen-1/2': '50vh',
'screen-3/4': '75vh',
},
maxHeight: {
none: 'none',
},
colors: {
bad: colors.red,
good: colors.green,
info: colors.blue,
warn: colors.orange,
gray: colors.coolGray,
primary: colors.red,
secondary: colors.coolGray,
complementary: colors.blue,
},
flexGrow: {
2: 2,
3: 3,
4: 4,
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
variants: {
extend: {
translate: ['active'],
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
};