-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
47 lines (47 loc) · 1.13 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
module.exports = {
purge: {
enabled: false,
},
theme: {
fontFamily: {
firacode: ["Fira Code"],
sans: ['Inter var'],
},
extend: {
width: {
'27': '6.9rem',
'36': '8.75rem',
'14': '3.125rem',
'38': '9.375rem',
},
height: {
'30': '7rem',
'41': '10.8125rem',
},
minHeight: {
'12': '12rem'
},
colors: {
asphalt: '#23272A',
midnight: '#2C2F33',
forest: '#2f3640',
},
},
pagination: theme => ({
color: theme('colors.purple.600'),
linkFirst: 'mr-6 border rounded',
linkSecond: 'rounded-l border-l',
linkBeforeLast: 'rounded-r border-r',
linkLast: 'ml-6 border rounded',
})
},
variants: {
backgroundColor: ['dark', 'dark-hover', 'dark-group-hover', 'responsive', 'hover', 'focus'],
borderColor: ['dark', 'dark-focus', 'dark-focus-within', 'responsive', 'hover', 'focus'],
textColor: ['dark', 'dark-hover', 'dark-active', 'responsive', 'hover', 'focus']
},
plugins: [
require('@tailwindcss/ui'),
require('tailwindcss-dark-mode')(),
]
}