-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
50 lines (50 loc) · 995 Bytes
/
tailwind.config.mjs
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} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [require("daisyui"), require('@tailwindcss/typography')],
daisyui: {
themes: [{
light: {
...require("daisyui/src/theming/themes")["light"],
"primary": "#1962d7",
".hero-1": {
"color": "#1962d7"
},
".hero-2": {
"color": "#1b4ab1"
},
".hero-3": {
"color": "#16338c"
},
".hero-4": {
"color": "#0b1d69"
},
".hero-5": {
"color": "#000748"
},
},
},{
dark: {
...require("daisyui/src/theming/themes")["dark"],
".hero-1": {
"color": "#506fd6"
},
".hero-2": {
"color": "#325dad"
},
".hero-3": {
"color": "#1f4b85"
},
".hero-4": {
"color": "#16385d"
},
".hero-5": {
"color": "#142538"
},
},
}],
},
}