From 37c047915c6eec024e416cd26c3f775f704eeed8 Mon Sep 17 00:00:00 2001 From: Mehmet Salih Yavuz Date: Fri, 12 Sep 2025 15:06:08 +0300 Subject: [PATCH] fix(EmptyState): lighten the text color --- .../superset-ui-core/src/components/EmptyState/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/superset-frontend/packages/superset-ui-core/src/components/EmptyState/index.tsx b/superset-frontend/packages/superset-ui-core/src/components/EmptyState/index.tsx index 05e39eed9b79..c8251be11a7a 100644 --- a/superset-frontend/packages/superset-ui-core/src/components/EmptyState/index.tsx +++ b/superset-frontend/packages/superset-ui-core/src/components/EmptyState/index.tsx @@ -60,7 +60,7 @@ const EmptyStateContainer = styled.div` flex-direction: column; width: 100%; height: 100%; - color: ${theme.colorTextQuaternary}; + color: ${theme.colorTextTertiary}; align-items: center; justify-content: center; padding: ${theme.sizeUnit * 4}px; @@ -84,7 +84,7 @@ const EmptyStateContainer = styled.div` const Title = styled.p<{ size: EmptyStateSize }>` ${({ theme, size }) => css` font-size: ${size === 'large' ? theme.fontSizeLG : theme.fontSize}px; - color: ${theme.colorTextQuaternary}; + color: ${theme.colorTextTertiary}; margin-top: ${size === 'large' ? theme.sizeUnit * 4 : theme.sizeUnit * 2}px; font-weight: ${theme.fontWeightStrong}; `} @@ -93,7 +93,7 @@ const Title = styled.p<{ size: EmptyStateSize }>` const Description = styled.p<{ size: EmptyStateSize }>` ${({ theme, size }) => css` font-size: ${size === 'large' ? theme.fontSize : theme.fontSizeSM}px; - color: ${theme.colorTextQuaternary}; + color: ${theme.colorTextTertiary}; margin-top: ${theme.sizeUnit * 2}px; `} `;