-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
66 lines (64 loc) · 1.27 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
57
58
59
60
61
62
63
64
65
66
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
title: ['EB Garamond'],
body: ['EB Garamond'],
mono: ['Roboto Mono'],
},
backgroundColor: (theme) => ({
...theme('colors'),
primary: 'F9F9F9',
}),
extend: {
typography: {
DEFAULT: {
css: {
color: '#000',
}
}
},
outline: {
blue: '4px solid #ECECEC',
},
colors: {
blue: {
20: '#fafafa',
420: '#0D1A33',
},
red: {
20: '#fafafa',
},
gray: {
20: '#4f4f4f',
80: '#EBEBEB',
120: '#666666',
primary:'#333333',
secondary:'#666666',
placeholder:'#a7a7a7',
detail: '#CCCCCC',
wash: '#EBEBEB',
hover: '#DBDBDB',
bg:'#FAFAFA',
special:'#0000FF',
},
truegray: {
800: '#333333',
},
purple: {
2004: "#DEADFB",
2021: "#FFE"
}
}
},
},
variants: {
extend: {
},
},
plugins: [
require('@tailwindcss/typography'),
],
};