forked from danielcranney/profileme-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
87 lines (86 loc) · 1.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const colors = require("tailwindcss/colors");
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: "1.3rem",
sm: "2rem",
lg: "4rem",
xl: "5rem",
"2xl": "6rem",
},
},
extend: {
spacing: {
9.5: "2.375rem",
14: "3.5rem",
18: "4.5rem",
19: "4.75rem",
22: "5.5rem",
56: "14rem",
58: "14.5rem",
62: "15.5rem",
66: "16.5rem",
68: "17rem",
70: "17.5rem",
74: "18.5rem",
76: "19rem",
78: "19.5rem",
82: "20.5rem",
84: "21rem",
86: "21.5rem",
88: "22.0rem",
90: "22.5rem",
92: "23rem",
94: "23.5rem",
104: "26rem",
114: "28.5rem",
128: "32rem",
},
transitionProperty: {
height: "height",
},
colors: {
brand: "#139ae1",
"brand-alt": "#0D7DBA",
dark: {
300: "#b5b9d6",
400: "#53566b",
500: "#45455f",
600: "#393950",
700: "#29293b",
800: "#1d1d2b",
900: "#181824",
},
light: {
100: "#f8f8f8",
200: "#dee1e6",
300: "#c9ced6",
400: "#9ba1ab",
500: "#6f7580",
600: "#4d525c",
700: "#3c414a",
800: "#1e2126",
900: "#0d0f12",
},
red: colors.red,
orange: colors.orange,
yellow: colors.yellow,
emerald: colors.emerald,
blue: colors.blue,
},
fontFamily: {
display: ["aktiv-grotesk-extended", "sans-serif"],
body: ["aktiv-grotesk", "sans-serif"],
code: ["source-code-pro", "monospace"],
},
},
},
plugins: [require("@tailwindcss/forms")],
};