This tailwind plugin provides Prodeko brand colors and fonts.
Install from Prodeko github package registry.
Add the plugin to your tailwind.config.js. Notice that you have to invoke the plugin factory.
//tailwind.config.js
const prodeko_tailwind = require('@prodeko/tailwind-theme')
export default {
plugins: [
prodeko_tailwind(),
],
}The plugin defines a shadcn theme. To use the theme, simply install shadcn and put the following in your globals.css. No need to add separate theme variables.
# globals.css
@import "tailwindcss";
@import "tw-animate-css";
@plugin "@prodeko/tailwind-theme"