-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
66 lines (65 loc) · 2.22 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import typography from "@tailwindcss/typography";
import daisyui from "daisyui";
import defaultTheme from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
},
},
},
daisyui: {
themes: [
{
light: {
primary: "#1e66f5", // blue
"primary-content": "#eff1f5", // base
secondary: "#8839ef", // mauve
"secondary-content": "#eff1f5", // base
accent: "#179299", // teal
"accent-content": "#eff1f5", // base
neutral: "#ccd0da", // surface0
"neutral-content": "#4c4f69", // text
"base-100": "#eff1f5", // base
"base-200": "#e6e9ef", // mantle
"base-300": "#e6e9ef", // crust
"base-content": "#4c4f69", // text
info: "#209fb5", // sapphire
"info-content": "#eff1f5", // base
success: "#40a02b", // green
"success-content": "#eff1f5", // base
warning: "#df8e1d", // yellow
"warning-content": "#eff1f5", // base
error: "#d20f39", // red
"error-content": "#eff1f5", // base
},
dark: {
primary: "#8caaee", // blue
"primary-content": "#303446", // base
secondary: "#ca9ee6", // mauve
"secondary-content": "#303446", // base
accent: "#81c8be", // teal
"accent-content": "#303446", // base
neutral: "#414559", // surface0
"neutral-content": "#c6d0f5", // text
"base-100": "#303446", // base
"base-200": "#292c3c", // mantle
"base-300": "#232634", // crust
"base-content": "#c6d0f5", // text
info: "#85c1dc", // sapphire
"info-content": "#303446", // base
success: "#a6d189", // green
"success-content": "#303446", // base
warning: "#e5c890", // yellow
"warning-content": "#303446", // base
error: "#e78284", // red
"error-content": "#303446", // base
},
},
],
},
plugins: [typography, daisyui],
};