-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
30 lines (29 loc) · 904 Bytes
/
tailwind.config.ts
File metadata and controls
30 lines (29 loc) · 904 Bytes
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
import type { Config } from "tailwindcss";
export default {
darkMode: 'class', // Enable dark mode using a class
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
'custom-white-20': 'rgba(255, 255, 255, 0.2)',
'custom-white-0': 'rgba(255, 255, 255, 0)',
'custom-purlin-100':'#FF4465',
'custom-purlin-0':'#FFD4DC',
},
fontFamily: {
'dm-sans': ['DM Sans', 'sans-serif'],
},
backgroundImage: {
'custom-gradient': 'linear-gradient(180deg, #FF7D82 0%, #FFC1C4 100%)',
'custom-gradient-strong': 'linear-gradient( #FF008080 0%, #F6050580 100%)',
},
},
},
plugins: [],
} satisfies Config;