A designed Pokémon Card Grid application inspired by an antique aesthetic. Discover, search, and filter your favorite Pokémon in a responsive, visually enchanting grid display.
Tailwind CSS is used for styling to provide a modern, utility-first approach.
Tailwind's configuration is customized for an antique aesthetic using:
To explore or edit the configurations, check the tailwind.config.js file.
module.exports = {
content: [
"./pages/*/.{js,ts,jsx,tsx}",
"./components/*/.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
sepia: "#704214",
antiqueGold: "#D4AF37",
parchment: "#F5DEB3",
},
},
},
plugins: [require('@tailwindcss/typography')],
};