-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
51 lines (50 loc) · 1.51 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
inter: ["var(--font-inter)"],
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
backgroundImage: {
'text-gradient': "linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%)",
'gradient-1': "linear-gradient(160deg, #0093E9 0%, #80D0C7 100%)",
'gradient-2': "linear-gradient(45deg, #85FFBD 0%, #FFFB7D 100%)",
'gradient-3': "linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%)",
'gradient-4': "linear-gradient(180deg, #52ACFF 25%, #FFE32C 100%)",
},
scrollbar: {
none: {
"&::-webkit-scrollbar": {
display: "none",
},
"&": {
"-ms-overflow-style": "none", /* IE and Edge */
"scrollbar-width": "none", /* Firefox */
},
},
},
maxWidth: {
'small': '22rem', // Example custom width
'medium': '34rem', // Medium custom width
'large': '42rem', // Large custom width
'large2': '60rem', // Large custom width
'screen-90': '90vw', // 90% of viewport width
'screen-80': '80vw', // 80% of viewport width
},
height: {
'six': '700px',
'three': '400px',
},
},
},
plugins: [],
};