- Removed extra div causing layout issues - Updated color palette to match initial design - Restored original color tokens 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
57 lines
1.4 KiB
JavaScript
57 lines
1.4 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': '#474747',
|
|
'bg-light': '#575757',
|
|
'text': '#F5F5F5',
|
|
'text-muted': '#A1A1A1',
|
|
'highlight': '#7D7D7D',
|
|
'border': '#696969',
|
|
'border-muted': '#7D7D7D',
|
|
'primary': '#D6D6D6',
|
|
'secondary': {
|
|
50: '#F7F5F2',
|
|
100: '#F4F0EB',
|
|
200: '#EDE5DE',
|
|
300: '#E2D6CB',
|
|
400: '#D2C1B1',
|
|
500: '#BAA28C',
|
|
600: '#987C61',
|
|
700: '#836A54',
|
|
800: '#6C5947',
|
|
900: '#463A30',
|
|
950: '#2C231B'
|
|
},
|
|
},
|
|
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'),
|
|
],
|
|
} |