Using Tailwind UI
Just uncomment those lines in tailwind.config.js
plugins: [
// Uncomment the following if you'd like to use TailwindUI
require('@tailwindcss/ui')({
layout: 'sidebar',
})
],And make sure that you have tailwindui installed in your /package.json file.
You might have to run the following yarn command
yarn add @tailwindcss/uiI believe all the standard colors are there, but fuchsia is not in the standard set. You just need to opt into the non-standard ones like this in the tailwind.config.js file
const colors = require('tailwindcss/colors')
module.exports = {
theme: {
extend: {
colors: {
rose: colors.rose,
}
},
},
...
Notifications
You’re not receiving notifications from this thread.