-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (59 loc) · 1.52 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
60
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
darkMode: "class",
content: [
"{resources,templates}/**/*.{js,cjs,mjs,jsx,ts,tsx,vue,j2,html,htm,jinja,jinja2}",
"src/pybama_org/frontend/templates/**/*.{js,jsx,ts,cjs,mjs,tsx,vue,j2,html,htm,jinja,jinja2}",
],
safelist: ["alert", "alert-success", "alert-error", "alert-warning", "alert-info"],
plugins: [require("@tailwindcss/typography"), require("@tailwindcss/aspect-ratio"), require("daisyui")],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
"python-primary": "#4584b6",
"python-accent": "#ffde57",
"python-secondary": "#646464",
},
},
},
daisyui: {
darkTheme: "dark",
base: true,
styled: true,
utils: true,
themes: [
{
light: {
primary: "#4584b6",
secondary: "#646464",
accent: "#70b2e7",
neutral: "#e5e7eb",
"base-100": "#f3f4f6",
info: "#7dd3fc",
success: "#86efac",
warning: "#fcd34d",
error: "#f87171",
},
dark: {
primary: "#4584b6",
secondary: "#ebebe9",
accent: "#70b2e7",
neutral: "#202020",
"base-100": "#121212",
info: "#7dd3fc",
success: "#86efac",
warning: "#fcd34d",
error: "#f87171",
},
},
],
},
}