Update for production backup

This commit is contained in:
2026-07-15 19:11:03 -06:00
parent 42b5f533c3
commit b228607fc0
62 changed files with 5614 additions and 6290 deletions
+22 -21
View File
@@ -1,21 +1,22 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html', // Incluye tu archivo HTML principal
'./src/**/*.{js,jsx,ts,tsx}', // Analiza todos los archivos de tu carpeta `src`
],
theme: {
extend: {
// Aquí puedes personalizar el tema (colores, fuentes, etc.)
colors: {
'blue': '#4242EE',
},
},
},
plugins: [],
};
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}", // Esto le dice que busque en toda la carpeta src
],
theme: {
extend: {
colors: {
primary: "#0049ab",
secondary: "rgb(59, 59, 59)",
accent: "#000000",
"brand-dark": "#020617",
"black" : "#000000",
},
fontFamily: {
raleway: ["Raleway", "sans-serif"],
},
},
},
plugins: [],
}