Skip to content

Commit 1265b3d

Browse files
msyavuzsadpandajoe
authored andcommitted
fix(theming): Lighter text colors on dark mode (#35114)
(cherry picked from commit 95333e3)
1 parent b2fd9e2 commit 1265b3d

File tree

1 file changed

+3
-3
lines changed
  • superset-frontend/packages/superset-ui-core/src/components/EmptyState

1 file changed

+3
-3
lines changed

superset-frontend/packages/superset-ui-core/src/components/EmptyState/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const EmptyStateContainer = styled.div`
6060
flex-direction: column;
6161
width: 100%;
6262
height: 100%;
63-
color: ${theme.colorTextQuaternary};
63+
color: ${theme.colorTextTertiary};
6464
align-items: center;
6565
justify-content: center;
6666
padding: ${theme.sizeUnit * 4}px;
@@ -84,7 +84,7 @@ const EmptyStateContainer = styled.div`
8484
const Title = styled.p<{ size: EmptyStateSize }>`
8585
${({ theme, size }) => css`
8686
font-size: ${size === 'large' ? theme.fontSizeLG : theme.fontSize}px;
87-
color: ${theme.colorTextQuaternary};
87+
color: ${theme.colorTextTertiary};
8888
margin-top: ${size === 'large' ? theme.sizeUnit * 4 : theme.sizeUnit * 2}px;
8989
font-weight: ${theme.fontWeightStrong};
9090
`}
@@ -93,7 +93,7 @@ const Title = styled.p<{ size: EmptyStateSize }>`
9393
const Description = styled.p<{ size: EmptyStateSize }>`
9494
${({ theme, size }) => css`
9595
font-size: ${size === 'large' ? theme.fontSize : theme.fontSizeSM}px;
96-
color: ${theme.colorTextQuaternary};
96+
color: ${theme.colorTextTertiary};
9797
margin-top: ${theme.sizeUnit * 2}px;
9898
`}
9999
`;

0 commit comments

Comments
 (0)