Files
MyWebsite/tailwind.config.js
T
Itziar Zameza García 476dd54c0e feat: initial portfolio implementation with dark mode and i18n
- Add Astro portfolio with TypeScript
- Implement dark/light theme toggle
- Add Spanish/English translations
- Create under construction page
- Style with Tailwind CSS and glassmorphism effects
- Add profile image, projects, skills, and experience sections
2026-03-14 22:41:48 +01:00

25 lines
523 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./src/**/*.{astro,html,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: '#8c2bee',
'background-light': '#f7f6f8',
'background-dark': '#191022',
},
fontFamily: {
display: ['Space Grotesk', 'sans-serif'],
},
borderRadius: {
DEFAULT: '0.5rem',
lg: '1rem',
xl: '1.5rem',
full: '9999px',
},
},
},
plugins: [],
}