@truongdq01/themes
v1.0.3
Published
Multi-brand plugin presets for @truongdq01/ui
Maintainers
Readme
@truongdq01/themes
Multi-brand plugin presets for the RNUI ecosystem.
Overview
This package provides pre-configured brand presets for the RNUI @truongdq01/ui components. Easily switch between different visual identities with a single configuration.
Available Brands
- Love: Soft rose and red hues.
- Ocean: Deep blues and aquatic tones.
- Forest: Earthy greens and natural palettes.
- Sunset: Warm oranges and vibrant yellows.
- Midnight: Sleek dark mode optimizations.
Installation
bun add @truongdq01/themesUsage
import { ThemeProvider } from "@truongdq01/ui";
import { loveBrand } from "@truongdq01/themes";
export default function App() {
return (
<ThemeProvider brand={loveBrand} colorScheme="light">
<YourApp />
</ThemeProvider>
);
}Development
# Build the package
bun run build
# Typecheck
bun run typecheck