docs/ai_builder/features/customization.md
The App Style feature allows you to customize the visual appearance of your AI-generated applications. You can choose from predefined design themes or create custom styling to match your brand and preferences.
import reflex as rx
rx.el.div(
rx.image(
src=rx.color_mode_cond(
"https://web.reflex-assets.dev/ai_builder/features/style_light.webp",
"https://web.reflex-assets.dev/ai_builder/features/style_dark.webp",
),
class_name="rounded-md h-auto",
border=f"0.81px solid {rx.color('slate', 5)}",
),
class_name="w-full flex flex-col rounded-md",
)
When using Custom mode, you can adjust:
These options are predefined popular themes you can choose for your app. Below are some of the available themes you can choose from
rx.el.div(
rx.image(
src=rx.color_mode_cond(
"https://web.reflex-assets.dev/ai_builder/features/theme_light.webp",
"https://web.reflex-assets.dev/ai_builder/features/theme_dark.webp",
),
class_name="rounded-md h-auto",
border=f"0.81px solid {rx.color('slate', 5)}",
),
class_name="w-full flex flex-col rounded-md",
)