Have you ever wished that you could use a modern utility CSS framework while simultaneously having your color palette constrained by hardware that's several decades old? tailwind-retro-colors has you covered.
tailwind-retro-colors replaces the default Tailwind color scheme with a limited set of colors based on retro hardware capabilities.
npm install --save tailwind-retro-colors
// tailwind.config.js
const { nes } = require("tailwind-retro-colors");
module.exports = {
theme: {
colors: nes,
},
};
<div class="bg-blue-600 text-gray-100 text-center">Hello NES!</div>