1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./src/**/*.{js,ts,jsx,tsx}'], theme: { extend: { colors: { ocean: '#232a5c', deepocean: '#080e37', ruby: '#ff0052' }, aspectRatio: { game: '0.618' } } }, plugins: [] }