-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (34 loc) · 937 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
/* eslint-disable @typescript-eslint/no-require-imports */
/** @type {import('tailwindcss').Config} */
const config = {
content: ['./app/**/*.{js,ts,jsx,tsx,mdx}', './src/**/*.{js,ts,jsx,tsx,mdx}'],
plugins: [require('daisyui')],
daisyui: {
themes: [
{
light: {
...require('daisyui/src/theming/themes')['light'],
primary: '#f59e0b',
'primary-content': '#fafafa',
'base-100': '#fafafa',
'base-200': '#e5e5e5',
'base-300': '#d4d4d4',
'base-content': '#0a0a0a',
},
},
{
dark: {
...require('daisyui/src/theming/themes')['dark'],
primary: '#fb923c',
'primary-content': '#262626',
'base-100': '#262626',
'base-200': '#171717',
'base-300': '#0a0a0a',
'base-content': '#e5e5e5',
},
},
],
logs: false,
},
}
export default config