Styling
Get started with styling your extension.
To build the extension interface TurboStarter comes with Tailwind CSS and Radix UI pre-configured.
Why Tailwind CSS and Radix UI?
The combination of Tailwind CSS and Radix UI gives ready-to-use, accessible UI components that can be fully customized to match your brands design.
Tailwind configuration
In the tooling/tailwind/config
directory you will find shared Tailwind CSS configuration files. To change some global styles you can edit the files in this folder.
Here is an example of a shared Tailwind configuration file:
For the colors part, we bet stricly on CSS Variables in HSL format to allow for easy theme management without a need for any JavaScript.
Also, each app has its own tailwind.config.ts
file which extends the shared config and allows you to override the global styles.
Here is an example of an app's tailwind.config.ts
file:
That way we can have a separation of concerns and a clear structure for the Tailwind CSS configuration.
Themes
TurboStarter comes with 10+ predefined themes which you can use to quickly change the look and feel of your app.
They're defined in packages/ui/shared/src/styles/themes
directory. Each theme is a set of variables that can be overridden:
Each variable is stored as a HSL array, which is then converted to a CSS variable. That way we can ensure full type-safety and reuse themes across parts of our apps (e.g. use the same theme in emails).
Feel free to add your own themes or override the existing ones to match your brand's identity.
To apply a theme to your app, you can use the data-theme
attribute on your layout wrapper for each part of the extension:
In TurboStarter, we're using Storage API to persist the user's theme selection and then apply it to the root div
element.
Dark mode
The starter kit comes with a built-in dark mode support.
Each theme has a corresponding dark mode variables which are used to change the theme to its dark mode counterpart.
As we define the darkMode
as class
in the shared Tailwind configuration, we need to add the dark
class to the root wrapper element to apply the dark mode styles.
The same as for the theme, we're using Storage API to persist the user's dark mode selection and then apply correct class name to the root div
element:
We can define the default theme mode and color in app configuration.
Last updated on