Initial commit

This commit is contained in:
Pit Friedrich
2025-11-15 14:58:44 +01:00
commit 84c9e3f855
38 changed files with 14052 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
/** @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: [],
}