-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
50 lines (36 loc) · 981 Bytes
/
tailwind.config.cjs
File metadata and controls
50 lines (36 loc) · 981 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,ts,jsx,tsx}', 'node_modules/daisyui/dist/**/*.js', 'node_modules/react-daisyui/dist/**/*.js'],
// enable dark mode via class strategy
// darkMode: 'class',
plugins: [require('daisyui'), require('@tailwindcss/typography')],
// daisyUI config (optional)
daisyui: {
// themes: true,
themes: [
{
'karbonized-website': {
primary: '#0ea5e9',
secondary: '#263F40',
accent: '#d97706',
neutral: '#0E111A',
'base-100': '#090c12',
info: '#22d3ee',
success: '#9CB686',
warning: '#FFD261',
error: '#FC9783',
'base-200': '#07090D',
'base-300': '#ced3d9',
'base-content': '#000000'
}
}
],
styled: true,
base: true,
utils: true,
logs: true,
rtl: false,
prefix: '',
darkTheme: 'dark'
}
}