-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
48 lines (47 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./pages/**/*.js', './components/**/*.js'],
darkMode: 'class',
theme: {
colors: {
'white': {
DEFAULT: '#FFFFFF'
},
'dove-gray': {
DEFAULT: '#616161',
'50': '#EBEBEB',
'100': '#DBDBDB',
'200': '#BDBDBD',
'300': '#9E9E9E',
'400': '#808080',
'500': '#616161',
'600': '#424242',
'700': '#242424',
'800': '#050505',
'900': '#000000'
},
'link-blue': {
DEFAULT: '#0020C2',
'50': '#D6DDFF',
'100': '#B8C4FF',
'200': '#7A91FF',
'300': '#3D5EFF',
'400': '#002BFF',
'500': '#0020C2',
'600': '#001685',
'700': '#000C47',
'800': '#00020A',
'900': '#000000'
},
green: colors.green,
black: colors.black,
yellow: colors.yellow
},
},
variants: {
extend: {
typography: ['dark'],
},
},
plugins: [require('@tailwindcss/typography')],
}