From 140dceebd17ed23fcd796aac2b4d0a56e988da5b Mon Sep 17 00:00:00 2001 From: Shubham Singh Date: Mon, 18 May 2026 13:55:34 +0530 Subject: [PATCH] fix(front): use theme-aware color for side panel title (#20645) ## Summary - Added `color: ${themeCssVariables.font.color.primary}` to `StyledPageInfoTitleContainer` in `SidePanelPageInfoLayout.tsx` - The "Update records" title had no explicit color, so it didn't adapt to dark mode and was nearly invisible against the dark background - Now correctly uses the theme-aware primary font color ## Changes - `packages/twenty-front/src/modules/side-panel/components/SidePanelPageInfoLayout.tsx` Fixes #20627 --- .../modules/side-panel/components/SidePanelPageInfoLayout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/side-panel/components/SidePanelPageInfoLayout.tsx b/packages/twenty-front/src/modules/side-panel/components/SidePanelPageInfoLayout.tsx index 2567e5b1c9..14038d7660 100644 --- a/packages/twenty-front/src/modules/side-panel/components/SidePanelPageInfoLayout.tsx +++ b/packages/twenty-front/src/modules/side-panel/components/SidePanelPageInfoLayout.tsx @@ -29,6 +29,7 @@ export const StyledPageInfoTextContainer = styled.div` `; export const StyledPageInfoTitleContainer = styled.div` + color: ${themeCssVariables.font.color.primary}; font-size: ${themeCssVariables.font.size.md}; font-weight: ${themeCssVariables.font.weight.semiBold}; max-width: 150px;