-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (38 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
/** @type {import('tailwindcss').Config} */
module.exports = {
// plugins: [
// require("@tailwindcss/typography"),
// require("@tailwindcss/forms"),
// require("@tailwindcss/line-clamp"),
// require("@tailwindcss/aspect-ratio"),
// ],
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
maxHeight: {
128: "60vh",
},
colors: {
"dm-primary": "hsl(203, 30%, 30%)",
"dm-secondary": "hsl(34, 30%, 10%)",
"dm-tertiary": "hsl(39, 100%, 75%)",
"dm-text-primary": "hsl(190, 30%, 85%)",
"dm-text-secondary": "hsl(210, 30%, 60%)",
"lm-primary": "hsl(203, 5%, 70%)",
"lm-secondary": "hsl(34, 5%, 80%)",
"lm-tertiary": "hsl(39, 20%, 20%)",
"lm-text-primary": "hsl(190, 30%, 20%);",
"lm-text-secondary": "hsl(210, 30%, 40%)",
},
},
},
borderWidth: {
DEFAULT: "0.5px",
1: "1px",
},
plugins: [],
};