Tailwind Configuration
The main Tailwind configuration is located attailwind.config.js:
Customizing Colors
The portfolio primarily uses blue as the accent color. You can customize this by extending the theme intailwind.config.js:
primary instead of blue:
Current Color Usage
The portfolio uses the following color scheme throughout:Accent Colors
- Light mode:
blue-500(#3b82f6) - Dark mode:
blue-600/blue-700(#2563eb / #1d4ed8)
Background Colors
- Light mode:
white,gray-100 - Dark mode:
gray-800,gray-900
Examples from the codebase
Frompages/index.vue:90-91:
components/layout/Navbar.vue:74:
Custom Fonts
The portfolio uses the Lato font from Google Fonts. You can change this inassets/css/main.css:
Extending Tailwind Theme
You can add custom spacing, typography, or other design tokens:Adding Tailwind Plugins
You can enhance Tailwind with plugins. For example, to add forms and typography:Background Patterns
The avatar section uses a custom SVG background pattern (seepages/index.vue:575-578):