-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
38 lines (38 loc) · 1001 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
export default {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/flowbite/**/*.js",
],
daisyui: {
themes: [
{
lofi: {
...require("daisyui/src/theming/themes")["lofi"],
"--rounded-box": "1rem",
"--rounded-btn": "0.5rem",
"--rounded-badge": "1.9rem",
},
black: {
...require("daisyui/src/theming/themes")["black"],
"--rounded-box": "1rem",
"--rounded-btn": "0.5rem",
"--rounded-badge": "1.9rem",
secondary: "#e5e5e5",
},
},
],
},
theme: {
extend: {
fontFamily: {
sans: ["DM Sans", "Inter", ...defaultTheme.fontFamily.sans],
},
screens: {
"not-print": { raw: "not print" },
},
},
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
};