-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
48 lines (45 loc) · 1 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
const customColors = {
'br-dark': '#282423',
'br-dark-red': '#B02000',
'br-light-red': '#F18B74',
'br-light-grey': '#DDDDDD',
"red-brown-50": "#FFE9E3",
"red-brown-100": "#FADBD3",
"red-brown-200": "#F7B9AC",
"red-brown-300": "#F18B74",
"red-brown-400": "#E7674A",
"red-brown-500": "#DB4724",
"red-brown-600": "#CC3816",
"red-brown-700": "#B02000",
"red-brown-800": "#841800",
"red-brown-900": "#581000",
"black-50": "#F1F1F1",
"black-100": "#DDDDDD",
"black-200": "#C0C0BF",
"black-300": "#A5A3A3",
"black-400": "#898787",
"black-500": "#6F6D6C",
"black-600": "#565352",
"black-700": "#3E3B3A",
"black-800": "#282423",
"black-900": "#171514",
};
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
container: {
center: true,
},
extend: {
colors: customColors,
},
fontFamily: {
sans: ['"Open Sans"', 'sans-serif'],
},
},
plugins: [],
darkMode: 'class',
};