-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (59 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,ts,js,vue}"],
theme: {
extend: {},
},
// eslint-disable-next-line no-undef
plugins: [require("daisyui")],
daisyui: {
themes: [
{
// "catppuccin-latte": {
// primary: "#1e66f5", // blue
// secondary: "#ea76cb", // pink
// accent: "#179299", // teal
// neutral: "#dce0e8", // crust
// "base-100": "#eff1f5", // base
// info: "#209fb5", // sapphire
// success: "#40a02b", // green
// warning: "#df8e1d", // yellow
// error: "#d20f39", // red
// },
"catppuccin-frappe": {
primary: "#8caaee", // blue
secondary: "#f4b8e4", // pink
accent: "#81c8be", // teal
neutral: "#232634", // crust
"base-100": "#303446", // base
info: "#85c1dc", // sapphire
success: "#a6d189", // green
warning: "#e5c890", // yellow
error: "#e78284", // red
},
"catppuccin-macchiato": {
primary: "#8aadf4", // blue
secondary: "#f5bde6", // pink
accent: "#8bd5ca", // teal
neutral: "#181926", // crust
"base-100": "#24273a", // base
info: "#7dc4e4", // sapphire
success: "#a6da95", // green
warning: "#eed49f", // yellow
error: "#ed8796", // red
},
"catppuccin-mocha": {
primary: "#89b4fa", // blue
secondary: "#f5c2e7", // pink
accent: "#94e2d5", // teal
neutral: "#11111b", // crust
"base-100": "#1e1e2e", // base
info: "#74c7ec", // sapphire
success: "#a6e3a1", // green
warning: "#f9e2af", // yellow
error: "#f38ba8", // red
},
},
],
}
}