Themes are the heart of the Skeleton’s design system, empowered by CSS custom properties, authored as CSS-in-JS to enable simple integration into Skeleton’s Tailwind plugin. Which allows for simple pre-registration and switching on demand.
Preset Themes
Skeleton comes with a selection of high quality preset themes out of the box. Tap one of the theme preview cards below to copy the theme name to your clipboard.
Add the following import to the top of your tailwind.config
, then continue to the register instructions below.
Custom Themes
Optionally you can choose to generate a custom theme to adapt to your app’s unique design aesthetic. Skeleton provides a powerful but easy to use theme generator to make to enable this.
- Open the Theme Generator and design your theme.
- Tap the “code” view from the menu options at the top of the site.
- Provide a unique name for your theme.
- Copy the contents of the generated theme in full.
- Create a new file in the root of your project called
theme-custom.ts
(any name is fine).
You may import each custom theme at the top of your project’s tailwind.config
. Then proceed to the register instructions below.
Register Themes
Register each imported theme within the Skeleton plugin settings in tailwind.config
. Then proceed to activation below.
TIP: There’s no limited to how many themes you can register, but each increases the size of your generated CSS bundle.
Activate a Theme
Finally, set the active theme to display using the data-theme
attribute on your <body>
element.
Customize and Extend
Theme Properties
If you wish to update the CSS Custom Properties provided by any of Skeleton’s preset themes. Apply the following changes in your global stylesheet. This will target the root scope, a specific theme, then modify each theme property value.
Target Themes
If your application supports multiple themes, you can target changes to specific themes via the data-theme
attribute.
Backgrounds
Your app’s background colors are set automatically using two specific theme properties. Overwrite these using your global stylesheet.
You may also use Tailwind or vanilla CSS by targetting the <body>
element.
Background images are also supported, including CSS mesh gradients. By using theme properties for each color, you can ensure the gradient adheres to your theme’s palette.
Use Mesher to quickly and easily generate custom mesh gradients.
TIP: See how we handle targetted theme gradients for this website.
Custom Fonts
Skeleton recommends the use of Fontsource for installing and managing custom fonts.
Install your font of choice.
Then import each font at the top of your global stylesheet.
Finally, overwrite each applicable theme property for your target theme.
For custom themes, these settings are can be defined directly within each respective theme file.
API Reference
For more information, please refer to the full Tailwind Plugin documentation.