Update for production backup
This commit is contained in:
+22
-21
@@ -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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user