biohazard-vfx/tailwind.config.js
Nicholai 3a3aab57c4 Redesign layout and navigation based on feedback
- Fixed navigation links to work properly
- Removed card/box styling from sections
- Created unified center column layout
- Reduced project grid hover zoom effect
- Updated color scheme to be more modern (black/white/gray)
- Made About and Story sections full-width
- Improved overall layout consistency

🤖 Generated with [opencode](https://opencode.ai)

Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-07 17:43:45 -06:00

45 lines
1.2 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'bg-dark': '#000000',
'bg': '#0a0a0a',
'bg-light': '#1a1a1a',
'text': '#ffffff',
'text-muted': '#a0a0a0',
'highlight': '#666666',
'border': '#2a2a2a',
'border-muted': '#1a1a1a',
'primary': '#ffffff',
'secondary': '#ff0000',
},
fontFamily: {
'sans': ['var(--font-roboto-condensed)', 'system-ui', 'sans-serif'],
},
animation: {
'fade-in': 'fadeIn 0.6s ease-out',
'slide-up': 'slideUp 0.6s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
}