-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
36 lines (36 loc) · 954 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
daisyui: {
themes: [
{
mytheme: {
primary: "#1E429F",
// "primary-content": "#2F435A",
secondary: "#FACC15",
// "secondary-content": "#150f00",
accent: "#D29191",
"accent-content": "#150f00",
neutral: "#696E78",
// "neutral-content": "#000000",
"base-100": "#F5F5F5",
"base-200": "#D3D4D6",
"base-300": "#B4B5B7",
// "base-content": "#150f00",
info: "#0A2F6C",
"info-content": "#f5f5f5",
success: "#22c55e",
"success-content": "#f5f5f5",
warning: "#FF8225",
"warning-content": "#f5f5f5",
error: "#ED4050",
"error-content": "#f5f5f5",
},
},
],
},
plugins: [require("daisyui")],
};