Add files via upload

This commit is contained in:
markfulton
2025-08-31 15:13:45 +07:00
committed by GitHub
parent d04fd9d780
commit 9ba8f37fe1
11 changed files with 6976 additions and 0 deletions

48
tailwind.config.js Normal file
View File

@@ -0,0 +1,48 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
// Banana yellow accent
banana: {
50: '#FFFBEB',
100: '#FEF3C7',
200: '#FDE68A',
300: '#FCD34D',
400: '#FDE047', // Primary banana yellow
500: '#EAB308',
600: '#CA8A04',
700: '#A16207',
800: '#854D0E',
900: '#713F12',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
animation: {
'marching-ants': 'marching-ants 0.5s linear infinite',
'pulse-slow': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
'marching-ants': {
'0%': { 'stroke-dashoffset': '0' },
'100%': { 'stroke-dashoffset': '10' },
},
},
spacing: {
'18': '4.5rem',
'60': '15rem',
'72': '18rem',
'80': '20rem',
'88': '22rem',
'120': '30rem',
'144': '36rem',
'100': '25rem',
'112': '28rem',
},
},
},
plugins: [],
};