-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 914 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
// darkMode: 'class',
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
lg: "4rem",
xl: "5rem",
"2xl": "12rem", //6rem
},
},
fontFamily: {
sans: ["Be Vietnam Pro", "system-ui", "sans"],
},
fontSize: {
xs: "0.663rem",
sm: "0.720rem",
base: "0.803rem",
lg: "0.938rem",
xl: "1.063rem",
"2xl": "1.313rem",
"3xl": "1.688rem",
"4xl": "2.063rem",
"5xl": "2.8rem",
"6xl": "3.5rem",
"7xl": "4.5rem",
},
colors: {
green: {
400: "#4ade80",
500: "#00d49f",
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};