Files
unraid-monitor/frontend/tailwind.config.js
T
Pit Friedrich 84c9e3f855 Initial commit
2025-11-15 14:58:44 +01:00

20 lines
461 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
unraid: {
orange: '#ff8c2f',
'orange-dark': '#e67922',
dark: '#1a1a1a',
'dark-lighter': '#2d2d2d',
}
}
},
},
plugins: [],
}