Free and open source ticket system written in python
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 content: [
4 "../paw/templates/**/*.{html,js}",
5 "../fbl_integration/templates/**/*.{html,js}",
6 "../status/templates/**/*.{html,js}",
7 ],
8 theme: {
9 extend: {},
10 },
11 plugins: [require("daisyui")],
12 daisyui: {
13 themes: [
14 {
15 light: {
16 ...require("daisyui/src/theming/themes")["nord"],
17 },
18 dark: {
19 ...require("daisyui/src/theming/themes")["dark"],
20 accent: "#88C0D0",
21 secondary: "#81A1C1",
22 success: "#A3BE8C",
23 warning: "#EBCB8B",
24 error: "#BF616A",
25 "--rounded-box": "0.4rem",
26 "--rounded-btn": "0.2rem",
27 "--rounded-badge": "0.4rem",
28 "--tab-radius": "0.2rem",
29 },
30 },
31 ],
32 },
33};