17 lines
422 B
JavaScript
17 lines
422 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/web/templates/user/employee_base.html", "./src/web/templates/user/employee_*.html"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'brand-bg': '#1a1a2e',
|
|
'brand-bg-dark': '#0f0f1a',
|
|
'brand-bg-light': '#252540',
|
|
'brand-highlight': '#e94560',
|
|
'brand-accent': '#0f3460',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|