primera subida al repo TESS

This commit is contained in:
gabriel-alt
2024-12-24 19:12:43 -06:00
commit 42b5f533c3
36 changed files with 6290 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/** @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: [],
};