-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
45 lines (41 loc) · 1.16 KB
/
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
},
screens: {
'xs': '375px',
...defaultTheme.screens,
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["[data-theme=light]"],
"primary": "#6dc1c3",
"primary-focus": "#508e90",
"secondary": "#595bb4",
"secondary-focus": "#3f4181",
"primary-content": colors.neutral[`800`],
"secondary-content": colors.neutral[`200`],
"--rounded-box": ".75rem",
},
dark: {
...require("daisyui/src/theming/themes")["[data-theme=dark]"],
"primary": "#6dc1c3",
"primary-focus": "#508e90",
"secondary": "#595bb4",
"secondary-focus": "#3f4181",
"primary-content": colors.neutral[`800`],
"secondary-content": colors.neutral[`200`],
"--rounded-box": ".75rem",
},
},
],
},
}