-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (44 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
screens: {
sm: "576px",
// => @media (min-width: 576px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "992px",
// => @media (min-width: 992px) { ... }
xl: "1400px",
// => @media (min-width: 1200px) { ... }
},
fontFamily: {
heebo: ["Heebo", "sans-serif"],
},
container: {
center: true,
},
extend: {
colors: {
theme: {
primary: {
DEFAULT: "var(--primary-color)",
light: "#d7e9f6",
},
secondary: {
DEFAULT: "var(--secondary-color)",
},
light: {
DEFAULT: "var(--light-color)",
},
darkGray: "#666666",
lightGray: "#fafafa",
mediumGray: "#F8F8F8",
error: "#f61010",
},
},
},
},
plugins: [require("@tailwindcss/line-clamp")],
}