-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 988 Bytes
/
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
37
38
39
40
41
42
43
44
import { heroui } from '@heroui/react';
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/layout/**/*.{js,ts,jsx,tsx,mdx}',
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-sans)'],
mono: ['var(--font-mono)'],
jetbrains: ['var(--font-jetbrains)'],
},
},
},
darkMode: 'selector',
plugins: [heroui(
{
themes: {
dark: {
colors: {
background: {
DEFAULT: '#0d1422',
},
content1: '#192037',
content2: '#1f273f',
content3: '#2a334d',
content4: '#35405c',
default: {
foreground: '#ECEDEE'
}
}
}
}
}
)],
blocklist: [
'motion-reduce:transition-none'
]
};