-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (53 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
/** @type {import('tailwindcss').Config} */
const { fontFamily } = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
ceter: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
lg: "1rem",
xl: "1rem",
"2xl": "4rem",
"3xl": "8rem",
"4xl": "10rem",
},
},
extend: {
screens: {
"2xl": "1536px",
"3xl": "2000px",
"4xl": "2500px",
},
fontFamily: {
poppins: ["var(--poppins-font)", ...fontFamily.sans],
inter: ["var(--inter-font)"],
monument: ["var(--font-monument)"],
},
boxShadow: {
"3xl": "0px 4px 24px 0px rgba(226, 232, 240, 0.7)",
},
colors: {
primary: {
50: "#e3f7ea",
100: "#bdeaca",
200: "#90dca9",
300: "#5acf85",
400: "#1cc46a",
500: "#00b94f",
600: "#00a945",
700: "#009739",
800: "#00862d",
900: "#006618",
},
},
},
},
plugins: [],
};