-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (62 loc) · 1.33 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
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
display: ['Lato', 'sans-serif'],
body: ['"Noto sans"', 'sans-serif'],
extra: ['Patua One', 'cursive'],
},
borderWidth: {
6: '6px',
},
colors: {
basic: {
gray: '#333',
white: '#fff',
darkgray: '#444',
},
accent: {
main: '#26374A',
error: '#d3080c',
warning: '#ee7100',
info: '#269abc',
selected: '#333',
},
red: {
light: '#f3e9e8',
dark: '#d3080c',
},
link: {
default: '#2b4380',
selected: '#0535d2',
visited: '#7834bc',
},
blue: {
light: '#335075',
normal: '#1c578a',
default: '#091c2d',
dark: '#26374a',
deep: '#2e5274',
active: '#16446c',
},
gray: {
light: '#e1e4e7',
lighter: '#f8f8f8',
normal: '#eaebed',
default: '#dcdee1',
dark: '#cfd1d5',
deep: '#bbbfc5',
modal: '#999999',
},
orange: {
dark: '#e59700',
},
},
},
},
plugins: [],
}