-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
74 lines (73 loc) · 1.53 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
67
68
69
70
71
72
73
74
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}', './components/**/**/*.{js,ts,jsx,tsx}'],
darkMode: 'media',
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#06040f',
white: '#f0f9fb',
gray: {
white: '#e1eaef',
light: '#b2b8be',
dark: '#4e4c4f',
black: '#1c1a1f',
},
blue: {
white: '#b1dbe9',
light: '#6ca6d4',
DEFAULT: '#397ac2',
dark: '#1f346c',
black: '#0f1633',
},
purple: {
white: '#e6a8ca',
light: '#d776c6',
DEFAULT: '#8130a4',
dark: '#582274',
black: '#2a164b',
},
red: {
white: '#e4af9f',
light: '#ce5a50',
DEFAULT: '#942a2a',
dark: '#541821',
black: '#270b18',
},
orange: {
white: '#deb789',
light: '#ce8050',
DEFAULT: '#a64f2f',
},
yellow: {
white: '#dce195',
light: '#c9c13e',
DEFAULT: '#9a822b',
dark: '#5d451b',
black: '#392410',
},
green: {
white: '#b1e8b8',
light: '#81da98',
DEFAULT: '#36b96c',
dark: '#27836a',
black: '#143545',
},
},
extend: {
borderWidth: {
'12': '12px',
},
fontFamily: {
sans: ['Barlow', 'sans-serif'],
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}