Colors
Learn how to configure and customize colors with MijnUI.
MijnUI's plugin allows you to customize the color palette of your theme, including primary
, secondary
, accent
, and more. These color configurations are applied globally across all components, ensuring a consistent look and feel throughout your application.
Default Color Palette
MijnUI provides a default color palette designed for most use cases. Colors are categorized into base, common, and status, each serving specific UI needs.
-
Base Colors: Fundamental colors for your application.
-
Common Colors: Frequently used colors for UI elements.
-
Status Colors: Colors indicating different statuses.
Base Colors
Common Colors
Status Colors
Customizing Colors
You can customize the theme colors by defining them in the themes
object within the mijnui
plugin configuration. Below is an example of how to configure colors for both light and dark themes, as well as a custom theme:
Important
When customizing colors, make sure to use only HSL values without color functions (e.g: hsl()
).
Using Default Colors
The default color palette can be applied throughout your project, including text, background, and border colors. This makes it easy to maintain consistency in your UI.
This is a default color box
Importing Colors
You can access default colors in your TypeScript files by importing them from: @mijn-ui/react-theme
Using CSS Variables
MijnUI generates CSS variables for each color following the format --prefix-colorname-shade
. By default, the prefix is mijnui
, but you can customize it by setting the prefix
option in your configuration:
Then you can use the CSS variables in your CSS files.