Theming / Colors
Picking a theme
In
config.ts, you can update your theme using the variabledefaultShipNativeThemeconst config: Config = { // ... defaultShipNativeTheme: "blue", // ... }You can see all the theme options in
themeConfig.tsexport const themeOptions = [ "blue", "indigo", "violet", "zinc", "pink", "rose", "red", "orange", "amber", "yellow", "green", "emerald", "sky", ] as const;
Setting up a custom theme
Add the theme name in themeOptions
Define the colors for the theme in light mode & dark mode
Add the themes you set up to the theme colors
Last updated