From 0b23bb0257b19c0187ad761afe76c045606483d2 Mon Sep 17 00:00:00 2001 From: carlosabadia Date: Wed, 8 Apr 2026 16:25:34 -0700 Subject: [PATCH] Update docs sidebar text color --- docs/app/reflex_docs/templates/docpage/sidebar/sidebar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/app/reflex_docs/templates/docpage/sidebar/sidebar.py b/docs/app/reflex_docs/templates/docpage/sidebar/sidebar.py index b5cc2e648c7..d062c03ff84 100644 --- a/docs/app/reflex_docs/templates/docpage/sidebar/sidebar.py +++ b/docs/app/reflex_docs/templates/docpage/sidebar/sidebar.py @@ -133,7 +133,7 @@ def sidebar_leaf( rx.flex( rx.text( item.names, - class_name="text-sm text-m-slate-7 hover:text-m-slate-11 dark:hover:text-m-slate-5 transition-color w-full font-[525]", + class_name="text-sm text-secondary-11 hover:text-secondary-12 transition-color w-full font-[525]", ), class_name="border-l-[1.5px] border-m-slate-4 dark:border-m-slate-9 hover:border-m-slate-8 dark:hover:border-m-slate-5 pl-4 h-8 flex items-center", ), @@ -325,7 +325,7 @@ def sidebar_category(name: str, url: str, icon: str, index: int): ), ), class_name=ui.cn( - "flex flex-row justify-start items-center gap-2.5 w-full text-sm text-m-slate-7 hover:text-primary-10 dark:hover:text-primary-9 h-8", + "flex flex-row justify-start items-center gap-2.5 w-full text-sm text-secondary-11 hover:text-secondary-12 h-8", rx.cond( SidebarState.sidebar_index == index, "text-primary-10 dark:text-primary-9",