From 2abecbdb9c7b8ea80a0c663fb988684b42c15da6 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Fri, 19 Jan 2024 06:25:23 +0700 Subject: [PATCH] Remove default radix theme (#2403) --- reflex/app.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/reflex/app.py b/reflex/app.py index 46b4be7b0..bc3958062 100644 --- a/reflex/app.py +++ b/reflex/app.py @@ -46,7 +46,6 @@ from reflex.components.core.client_side_routing import ( Default404Page, wait_for_client_redirect, ) -from reflex.components.radix import themes from reflex.config import get_config from reflex.event import Event, EventHandler, EventSpec from reflex.middleware import HydrateMiddleware, Middleware @@ -132,11 +131,11 @@ class App(Base): Union[Component, ComponentCallable] ] = default_overlay_component - # Background tasks that are currently running + # Background tasks that are currently running. background_tasks: Set[asyncio.Task] = set() - # The radix theme for the entire app - theme: Optional[Component] = themes.theme(accent_color="blue") + # The radix theme for the entire app. + theme: Optional[Component] def __init__(self, *args, **kwargs): """Initialize the app.