HeroUI (Previously NextUI) - Beautiful, fast and modern React UI Library

PHOTO EMBED

Sun Jul 06 2025 09:39:27 GMT+0000 (Coordinated Universal Time)

Saved by @Shookthadev999 #jsx

tailwind.config.js

const { heroui } = require("@heroui/react");



module.exports = {

  // ...

  plugins: [

    heroui({

      themes: {

        light: {

          colors: {

            primary: "#0072f5",

          }

        },

        dark: {

          colors: {

            primary: "#0072f5",

          }

        },

      },

    }),

  ],

};



module.exports = {

  // ...

  plugins: [

    heroui({

      themes: {

        light: {

          colors: {

            primary: "#7828c8",

          }

        },

        dark: {

          colors: {

            primary: "#9353d3",

          }

        },

      },

    }),

  ],

};



module.exports = {

  // ...

  plugins: [

    heroui({

      themes: {

        light: {

          colors: {

            primary: "#FFFFFF",

          }

        },

        dark: {

          colors: {

            primary: "#000000",

          }

        },

      },

    }),

  ],

};



module.exports = {

  // ...

  plugins: [

    heroui({

      themes: {

        light: {

          colors: {

            primary: "#FFD34E",

            secondary: "#EE457E",

            background:"#F4E8D1"

          }

        },

        dark: {

          colors: {

            primary: "#FFD34E",

            secondary: "#EE457E",

            background: "#E1CA9E"

          }

        },

      },

    }),

  ],

};
content_copyCOPY

https://www.heroui.com/?ref