/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { minecraft: { grass: '#7cbd56', dirt: '#8b5a2b', stone: '#7a7a7a', diamond: '#5dcde3', emerald: '#50c878', gold: '#fcba03', redstone: '#dc143c', } }, fontFamily: { minecraft: ['"Press Start 2P"', 'cursive'], }, }, }, plugins: [], }