-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 984 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
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
'custom-blue': '#5b6c5d',
'custom-pink': {
light: '#ff7ce5',
DEFAULT: '#ff49db',
dark: '#18181b',
},
},
fontFamily: {
sans: ['Sohne', 'sans-serif'],
},
},
},
plugins: [require("daisyui")],
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false,
themes: [
"light",
"dark",
{
// mytheme: {
// "primary": "#7480ff",
// "secondary": "#ff52d9",
// "accent": "#00cdb7",
// "neutral": "#2a323c",
// "base-100": "#1d232a",
// "info": "#00b5ff",
// "success": "#9affdc",
// "warning": "#ffbe00",
// "error": "#ff5861"
// },
},
],
},
}