-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 829 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
36 lines (36 loc) · 829 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,jsx}"],
mode: "jit",
theme: {
extend: {
colors: {
primary: "#EC8F5E",
secondary: "#9FBB73",
tertiaryPrimary: "rgba(236, 143, 94, 0.5)",
tertiarySecondary: "rgba(159, 187, 115, 0.5)",
lightGrey: "#D9D9D9",
grey: "#4E4E4E",
mediumGrey: "rgba(23, 26, 32, 0.8)",
black: "#171A20",
white: "#ECECEC",
flat: "White",
mediumBlack: "#1E1E1E",
},
fontFamily: {
inter: ["Inter", "regular"],
},
},
screens: {
xxs: "400px",
xs: "480px",
ss: "620px",
sm: "768px",
custom:"880px",
md: "1060px",
lg: "1200px",
xl: "1700px",
},
},
plugins: [],
};