forked from lostdesign/linked
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (40 loc) · 865 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
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
purge: {
enabled: false,
content: ['./src/**/*.html', './src/**/*.vue', './src/**/*.svg']
},
theme: {
extend: {
colors: {
'pink': '#D1014C',
'bright-pink': '#FF005C',
'secondary-black': '#1f1f1f'
}
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#141414',
white: '#ffffff',
gray: colors.gray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber
}
},
variants: {
extend: {
ringWidth: ['hover'],
ringColor: ['hover'],
opacity: ['active', 'hover'],
scale: ['active'],
border: ['focus'],
translate: ['active'],
transform: ['active'],
dark: ['hover']
}
},
plugins: []
}