-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
36 lines (36 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,vue,ts}"],
theme: {
extend: {
maxWidth: {
mw: "1650px",
},
colors: {
background: "#020202",
navl: "#639A88",
navd: "#2B4141",
mgreen: "#416163",
grey: "#f1f2f2",
cloud: "#ecf0f1",
},
fontSize: {
sm: "0.875rem", // 14px
base: "1rem", // 16px
lg: "1.125rem", // 18px
xl: "1.25rem", // 20px
"2xl": "1.5rem", // 24px
"3xl": "1.875rem", // 30px
"4xl": "2.25rem", // 36px
"5xl": "3rem", // 48px
"6xl": "5rem",
"8xl": "8rem",
// Add more responsive font sizes as needed
},
fontFamily: {
sans: ["Poppins", "sans-serif"],
bebas: ["Bebas Neue", "cursive"],
},
},
},
};