generated from DTS-STN/next-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
69 lines (69 loc) · 1.62 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
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
display: ['var(--font-lato)', '"Open Sans"', 'sans-serif'],
body: ['var(--font-noto-sans)', 'sans-serif'],
},
borderWidth: {
6: '6px',
},
colors: {
basic: {
gray: '#333',
white: '#fff',
darkgray: '#444',
},
accent: {
main: '#26374A',
error: '#d3080c',
warning: '#ee7100',
info: '#269abc',
selected: '#333',
success: '#278400',
},
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',
},
},
backgroundImage: () => ({
'footer-parliament-image': 'url(../../public/landscape.png)',
'splash-page': 'url(../../public/sp-bg-1.jpg)',
}),
boxShadow: {
card: '0px 2px 8px rgba(0, 0, 0, 0.25)',
},
},
},
plugins: [require('@tailwindcss/typography')],
}