A Tailwind CSS plugin that brings Radix UI's color system to Tailwind CSS.
The Tailwind CSS Radix Colors is a plugin that brings Radix UI’s color system to Tailwind CSS. Users can enhance their Tailwind CSS projects by leveraging the well-thought-out color palette of Radix UI.
To install the Tailwind CSS Radix Colors plugin, follow these steps:
npm install tailwindcss-radix-colors
tailwind.config.js
):// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
...require("tailwindcss-radix-colors"),
},
},
},
plugins: [
require("tailwindcss-radix-colors"),
],
}
The Tailwind CSS Radix Colors plugin offers a convenient way to incorporate Radix UI’s color system into Tailwind CSS projects, providing users with an enhanced design experience and the flexibility to customize colors to meet their specific requirements. Users can easily integrate this plugin following the installation guide and start leveraging the benefits of Radix UI’s color palette.