logo

Colors

Color variables used in Pigment UI

Those color variables are for both light and dark mode. You can change them by overriding your desired color variables.

Color palette#

Overriding#

In your globals.css file you can override the color variables of Pigment UI, but it has to be done for both light and dark mode.

:root {
  --primary-500: 255 255 0;
}

:root[class="dark"] {
  --primary-500: 0 255 255;
}
Edit this page