-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
43 lines (42 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
darkMode: "class",
content: ["./byte_bot/server/domain/web/**/*.{html,js,ts,jsx,tsx,j2,jinja2}"],
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
require("daisyui"),
],
theme: {
extend: {
colors: {
"byte-teal": "#42b1a8",
"byte-blue": "#7bcebc",
"byte-light-blue": "#abe6d2",
"byte-orange": "#d4a35a",
"byte-red": "#fc7054",
"byte-dark": "#0c0c0c",
"byte-white": "#ebebe9",
},
},
},
daisyui: {
themes: [
{
byte_light: {
primary: "#42b1a8",
secondary: "#7bcebc",
accent: "#abe6d2",
neutral: "#0c0c0c",
"base-100": "#ebebe9",
info: "#6ee7b7",
success: "#059669",
warning: "#d4a35a",
error: "#fc7054",
},
},
],
},
}