-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.29 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
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
helvetica: ['Helvetica\\ Neue', 'Arial', 'sans-serif'],
},
extend: {
colors: {
primary: {
400: '#d0a1a1',
500: '#c68e8e',
600: '#bd7b7b',
700: '#b36868',
800: '#aa5555',
900: '#a04242',
},
secondary: {
400: '#808080',
500: '#999999',
600: '#b3b3b3',
700: '#cccccc',
800: '#e6e6e6',
900: '#ffffff',
},
tertiary: {
400: '#ffe3ab',
500: '#ffdd9a',
600: '#ffd889',
700: '#ffd279',
800: '#ffcd68',
900: '#ffc757',
},
black: {
400: '#8b8b8b',
500: '#737373',
600: '#5c5c5c',
700: '#454545',
800: '#2d2d2d',
900: '#161616',
},
party: {
green: '#b1f492',
ndp: '#f4c192',
liberal: '#9296f4',
other: '#d592f4',
independent: '#b7b7b7',
},
choice: {
yes: '#c4f492',
no: '#f49292',
other: '#d9b88e',
none: '#b7b7b7',
},
link: '#3e68b9',
},
},
},
plugins: [],
};