owl-stream/tailwind.config.js

36 lines
1018 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./lib/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
deepGreen: '#0a1f1a',
surfaceGreen: '#112920',
gold: '#c4a265',
goldLight: '#d4b87a',
teal: '#0082a7',
tealLight: '#00a3d0',
},
fontFamily: {
sans: ['var(--font-inter)', 'system-ui', 'sans-serif'],
},
backgroundImage: {
'hero-gradient': 'linear-gradient(180deg, #0a1f1a 0%, #112920 100%)',
},
animation: {
'fade-in': 'fadeIn 0.6s ease-out forwards',
'slide-up': 'slideUp 0.6s ease-out forwards',
},
keyframes: {
fadeIn: { '0%': { opacity: '0' }, '100%': { opacity: '1' } },
slideUp: { '0%': { transform: 'translateY(24px)', opacity: '0' }, '100%': { transform: 'translateY(0)', opacity: '1' } },
},
},
},
plugins: [],
};