-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
75 lines (61 loc) · 1.37 KB
/
tailwind.config.cjs
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
backdropBrightness: {
25: ".25",
},
colors: require("daisyui/src/colors"),
},
},
corePlugins: {
// preflight: false,
},
plugins: [
require('@tailwindcss/typography'),
require("daisyui")
// ...
],
daisyui: {
styled: true,
base: true,
utils: true,
logs: true,
rtl: false,
themes: [
{
ashdark: {
'primary': '#44b022',
'primary-focus': '#00ff00',
'primary-content': '#ffffff',
'secondary': '#721eaf',
'secondary-focus': '#ae00ff',
'secondary-content': '#ffffff',
'accent': '#ae9822',
'accent-focus': '#ffdd00',
'accent-content': '#ffffff',
'neutral': '#102e88',
'neutral-focus': '#0038c7',
'neutral-content': '#ffffff',
'base-100': '#021001',
'base-200': '#042002',
'base-300': '#073003',
'base-content': '#4ae9ff',
'info': '#384fff',
'success': '#87cf3a',
'warning': '#ffb347',
'error': '#ff1a1a',
'--rounded-box': '0.25rem',
'--rounded-btn': '0.1rem',
'--rounded-badge': '0.1rem',
'--animation-btn': '0.25s',
'--animation-input': '0.2s',
// '--btn-text-case': 'uppercase',
'--navbar-padding': '.5rem',
'--border-btn': '1px',
},
},
],
},
}