-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
32 lines (32 loc) · 947 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"brand-blue": "#348AA7",
"brand-green-light": "#F2F4F3",
"brand-blue-dark": "#1C1D1F",
"brand-marron-dark": "#31312B",
"brand-beige-light": "#FFFCF9",
"brand-red": "#FF5A5F",
"brand-beige-ecru": "#FFD6AD",
},
boxShadow: {
"brand-1": "1px 1px 0px #1C1D1F",
"brand-xs": "3px 3px 0px #1C1D1F",
"brand-sm": "5px 5px 0px #1C1D1F",
"brand-md": "7px 7px 0px #1C1D1F",
"brand-lg": "10px 10px 0px #1C1D1F",
},
dropShadow: {
"brand-xs": "3px 3px 0px #1C1D1F",
"brand-xs-reverse": "-3px 3px 0px #1C1D1F",
"brand-sm": "5px 5px 0px #1C1D1F",
"brand-md": "7px 7px 0px #1C1D1F",
"brand-lg": "10px 10px 0px #1C1D1F",
},
},
},
plugins: [],
};