generated from Tritintruong114/nextjs-youtube
-
Notifications
You must be signed in to change notification settings - Fork 19
/
tailwind.config.ts
44 lines (43 loc) · 1.33 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./animation/**/*.{js,ts,jsx,tsx,mdx}",
"./public/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"hero-background":
"url('https://cdn.dribbble.com/userupload/4270087/file/original-dd685e687e629f85a09d662b41578434.png?resize=1024x1024')",
},
gridTemplateColumns: {},
fontFamily: {
bebas: ["Bebas Neue", "sans-serif"],
},
inset: {},
padding: {},
height: {},
margin: {},
borderRadius: {},
fontSize: {
sm: "clamp(0.8rem, 0.17vw + 0.76rem, 0.89rem)",
base: "clamp(1rem, 0.34vw + 0.91rem, 1.19rem)",
lg: "clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem)",
xl: "clamp(1.56rem, 1vw + 1.31rem, 2.11rem)",
"2xl": "clamp(1.95rem, 1.56vw + 1.56rem, 2.81rem)",
"3xl": "clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem)",
"4xl": "clamp(3.05rem, 3.54vw + 2.17rem, 5rem)",
"5xl": "clamp(3.81rem, 5.18vw + 2.52rem, 6.66rem)",
"6xl": "clamp(4.77rem, 7.48vw + 2.9rem, 8.88rem)",
},
colors: {},
width: {},
gap: {},
},
},
plugins: [],
};
export default config;