From 07f75180aea2c1f8e26dc57928bdb4f0c3712443 Mon Sep 17 00:00:00 2001 From: Jeremy Lim Date: Wed, 2 Jul 2025 23:50:10 +0800 Subject: [PATCH] [#12744] UI Fix: Filter Section Separator Needs to Be Darker (#12945) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [#12744] UI Fix: Change text color in Filter Section Separator from light to tertiary. Before Screenshot 2025-06-29 at 6 10 50 PM After Screenshot 2025-06-29 at 6 11 15 PM --- .../ui/layout/dropdown/components/DropdownMenuSectionLabel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuSectionLabel.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuSectionLabel.tsx index ee1f195e8..0075a5403 100644 --- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuSectionLabel.tsx +++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuSectionLabel.tsx @@ -2,7 +2,7 @@ import styled from '@emotion/styled'; const StyledDropdownMenuSectionLabel = styled.div` background-color: ${({ theme }) => theme.background.transparent.lighter}; - color: ${({ theme }) => theme.font.color.light}; + color: ${({ theme }) => theme.font.color.tertiary}; min-height: 20px; width: auto; font-size: ${({ theme }) => theme.font.size.xxs};