post-deploy fixins
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m46s
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m46s
This commit is contained in:
22
tailwind.config.js
Normal file
22
tailwind.config.js
Normal 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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user