One of the main features of theui-svelte components library is its customizable color options, allowing you to maintain brand identity and ensure consistent theming efficiently.
The color system in TailwindCSS is a powerful tool for developers, and we've taken it a step further in our component library! By leveraging TailwindCSS, we've introduced additional custom color classes tailored for consistent branding. These new classes work just like Tailwind's native color classes but are specifically designed for branding and come with full support for shades. Using the built-in color system you can generate both shaded and non-shaded color classes.
Available Color Classes
Our component library provides a set of custom classes to make integrating these colors into your designs seamless and flexible. Below is the full list of available classes:
Class | Shades | Default | Description |
---|---|---|---|
.[T]-brand-primary-[S] | 50, 100-900, 950 | #E93E3A | Use this class to apply the primary brand color, e.g., .bg-brand-primary-500 for background or .text-brand-primary-500 for text. |
.text-on-brand-primary-[S] | 50, 100-900, 950 | #FFFFFF | A foreground color designed to complement .bg-brand-primary-500 as the background. |
.[T]-brand-secondary-[S] | 50, 100-900, 950 | #E8E838 | Apply the secondary brand color, e.g., .bg-brand-secondary-500 for background or .text-brand-secondary-500 for text. |
.text-on-brand-secondary-[S] | 50, 100-900, 950 | #2E2105 | A foreground color specifically for use with .bg-brand-secondary-500 as the background. |
.[T]-error-[S] | 50, 100-900, 950 | #E53935 | Represent errors in your components with these color classes. |
.[T]-info-[S] | 50, 100-900, 950 | #29B6F6 | Use this class for informational or neutral messages. |
.[T]-success-[S] | 50, 100-900, 950 | #00C853 | Ideal for success messages or positive states in your components. |
.[T]-warning-[S] | 50, 100-900, 950 | #FFC107 | Perfect for warning or caution-related messages. |
.bg-primary | N/A | Light: 250 250 250 Dark: 10 10 20 | A static background color for primary elements, defined via CSS variables. |
.bg-secondary | N/A | Light: 238 238 238 Dark: 30 30 40 | A static background color for secondary elements, defined via CSS variables. |
.bg-alt | N/A | Light: 10 10 20 Dark: 250 250 250 | A static background color for alternative sections, defined via CSS variables. |
.text-default | N/A | Light: 33 33 33 Dark: 245 245 245 | The default text color in our library, defined via CSS variables. |
.text-alt | N/A | Light: 189 189 189 Dark: 245 245 245 | A static alternative text color, ideal for secondary content. |
.text-muted | N/A | Light: 117 117 117 Dark: 175 175 175 | A muted text color for less prominent content. |
[T] = Type (e.g., bg
, text
, border
, fill
, etc.)
[S] = Shade (e.g., 50, 100-900, 950)
Example: bg-brand-primary-500
, text-on-brand-primary-500
, bg-error-400
Modify Existing Colors
TailwindCSS’s color system is enhanced for branding with support for shaded and non-shaded colors. Customize or add new colors via tailwind.config.ts for shades or directly edit CSS variables for non-shaded colors.
Modify Shaded Colors
If you want to modify a color with shades (i.e brand-primary
, brand-secondary
etc.), you can do it in tailwind.config.ts
. For example, to change the primary brand color to #001A6E
and secondary brand color to #FFE893
, the code is given below:
// Modify colors in tailwind.config.ts
import twShades from 'tw-color-shades';
export default {
theme: {
extend: {
colors: {
"brand-primary": twShades('#001A6E'),
"brand-secondary": twShades('#FFE893')
}
}
}
};
Modify Non-shaded Colors
There are some colors like background colors, text colors etc. behave differently in light and dark mode! These colors are shadeless and cannot be handled in the way shown above. For these colors we have use CSS variables! You can modify directly in the CSS file. For example, to change the primary background color in light mode to rgb(253 247 244)
and in dark mode to rgb(104 87 82)
and default text color in light mode to rgb(42 51 53)
and in dark mode to rgb(253 247 244)
, the code is given below:
/* Modify colors in app.css or app.postcss */
@layer base {
:root {
--ui-bg-primary: 253 247 244;
--ui-text-default: 42 51 53;
}
:root.dark {
--ui-bg-primary: 104 87 82;
--ui-text-default: 253 247 244;
}
}
Writing the color values in the format provided, such as 253 247 244
, rather than the conventional RGB code like rgb(253 247 244)
is essential because it aligns with TailwindCSS's methodology for applying opacity to colors.
Add New Color
Add Shaded Colors
If you want to add a new class for color with shades, you can do it in the tailwind.config.ts
file. For example, let's say, you want to add a new class in the color system named brand-tertiary
with the base value #009990
. Just follow the below steps:
// Generate new colors in tailwind.config.ts
import twShades from 'tw-color-shades';
export default {
theme: {
extend: {
colors: {
"brand-tertiary": twShades('#009990')
}
}
}
};
Now you can access this color with bg-brand-tertiary-500
or other shades like bg-brand-tertiary-100
or bg-brand-tertiary-800
.
Add Non-shaded Colors
If you want to add a new color that behaves differently in light and dark mode and you do not need "shades" for this colors, you can do this in your CSS file and then generate colors in tailwind.config.ts
. To add a new color bg-tertiary
in the color system, you can follow the below process:
/* define colors in app.css or app.postcss */
@layer base {
:root {
--my-css-var: 233 237 234;
}
:root.dark {
--my-css-var: 114 97 92;
}
}
// Generate the colors in tailwind.config.ts
import twShades from 'tw-color-shades';
export default {
theme: {
extend: {
backgroundColor: {
tertiary: twShades("--my-css-var")
}
}
}
};
Remove A Color
To remove a color follow the Tailwind CSS way, just set the color to undefined
in the tailwind.config.ts
.
// Remove colors in tailwind.config.ts
export default {
theme: {
extend: {
colors: {
"brand-secondary": undefined
},
backgroundColor: {
secondary: undefined
}
}
}
};
This will remove all the brand-secondary
color classes and bg-secondary
class from the application build!