20 lines
461 B
JavaScript
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: [],
|
|
} |