-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
58 lines (57 loc) · 1.2 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
// tailwind.config.js
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
container: {
padding: {
DEFAULT: "1rem",
sm: "2rem",
lg: "4rem",
xl: "2rem",
"2xl": "2rem",
},
},
extend: {
fontFamily: {
display: ['"acumin-pro-wide"', "sans-serif"],
body: ['"acumin-pro"', "sans-serif"],
},
width: {
"30pc": "30%",
"31pc": "31%",
"32pc": "32%",
"49pc": "49%",
"48pc": "48%",
"1/8": "12.5%",
"2/8": "25%",
"3/8": "37.5%",
"4/8": "50%",
"5/8": "65.8%",
"6/8": "75%",
"7/8": "87.5%",
},
transitionProperty: {
width: "width",
},
colors: {
soft: "#f0f0f0",
brand: "#e11d48",
// orange: "#ea580c",
brandAlt: "#867dd8",
light: "#a2a1a6",
mid: "#282833",
dark: "#22222b",
darker: "#1d1d23",
},
backgroundImage: (theme) => ({
"header-img": "url('/bg.svg')",
}),
},
},
plugins: [],
};