post-deploy fixins
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m46s

This commit is contained in:
2025-11-10 10:57:31 -08:00
parent 51c3d9c146
commit 4fc830a623
7 changed files with 970 additions and 20 deletions

22
tailwind.config.js Normal file
View File

@@ -0,0 +1,22 @@
/** @type {import('tailwindcss').Config} */
export default {
// Configure files to scan for Tailwind classes
content: [
"./index.html",
"./**/*.{js,ts,jsx,tsx}", // Scans all relevant files for classes
],
// Enable dark mode using a class
darkMode: 'class',
theme: {
extend: {
// Move the brand colors from index.html to here
colors: {
'brand-primary': '#10B981',
'brand-secondary': '#059669',
'brand-dark': '#047857',
'brand-light': '#ecfdf5',
}
},
},
plugins: [],
}