generated from manuelernestog/astrofy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
41 lines (32 loc) · 956 Bytes
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
module.exports = {
themes: [
{
usarral: {
"primary": "#e5e7eb",
"secondary": "#ffcb23",
"accent": "#3b82f6",
"neutral": "#06060f",
"base-100": "#24281e",
"info": "#00a6f2",
"success": "#00df77",
"warning": "#ff9600",
"error": "#f40047",
},
},
],
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
bluegray: '#20252c'
},
},
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
themes: true, // true: all themes | false: only light + dark | array: specific themes like this ["light", "dark", "cupcake"]
darkTheme: "dark", // name of one of the included themes for dark mode
logs: false, // Shows info about daisyUI version and used config in the console when building your CSS
}
}