DEV Community

Adrián UB for Ub Labs

Posted on • Updated on

How to add brand colors on TailwindCSS

GitHub logo ublabs / tailwindcss-brand-colors

Tailwind plugin for adding brands colors.

TailwindCSS Brand Colors

Tailwind plugin for adding brands colors.


Install

npm install @ublabs/tailwindcss-brand-colors
Enter fullscreen mode Exit fullscreen mode

or

yarn add @ublabs/tailwindcss-brand-colors
Enter fullscreen mode Exit fullscreen mode

Add the plugin to your tailwind.config.js file:

// tailwind.config.js
module.exports = {
  theme: {
    // ...
  },
  plugins: [
    //  for all list
    require('@ublabs/tailwindcss-brand-colors'),
    // select the brands
    require('@ublabs/tailwindcss-brand-colors')(['angular', 'tailwindcss']),
    // ...
  ],
};
Enter fullscreen mode Exit fullscreen mode

See the list of all brand colors available here

How to add a new brand color?

  • Fork/Clone Repository

    git clone https://github.com/YOUR-USERNAME/tailwindcss-brand-colors
    Enter fullscreen mode Exit fullscreen mode
  • Install Dependencies

    yarn install
    Enter fullscreen mode Exit fullscreen mode
  • Select Color

    Ex: #111827

  • Set Brand Color

    yarn nx workspace-schematic add-brand --name=<brand-name> --hex=#111827
    Enter fullscreen mode Exit fullscreen mode

Credits

Inspired by Simple Icons.

License

The MIT License (MIT). Please see License File for more information.

Top comments (0)