-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
26 lines (26 loc) · 817 Bytes
/
tailwind.config.mjs
File metadata and controls
26 lines (26 loc) · 817 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{ts,tsx,js,jsx}'],
darkMode: 'media', // or 'class' if you prefer manual toggle
theme: {
extend: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
DM: ["DM Sans", "sans-serif"],
clash: ["Clash Display", "sans-serif"],
clashDisplay: ['var(--font-clashDisplay)'],
opensauce: ['var(--font-opensauce)']
},
borderRadius: { lg: 'var(--radius)' },
colors: {
background: 'hsl(var(--background))',
foreground: 'hsl(var(--foreground))',
card: 'hsl(var(--card))',
border: 'hsl(var(--border))',
primary: 'hsl(var(--primary))',
secondary: 'hsl(var(--secondary))',
},
},
},
plugins: [],
}