Skip to content

Commit 7fde502

Browse files
authored
Update token colors on summary.tsx (#97297)
Update <StyledSummaryEntryLabel> text and link color in dark mode Chonk. <img width="1237" height="293" alt="Screenshot 2025-08-06 at 10 32 32 AM" src="https://github.com/user-attachments/assets/ebd8b046-755b-4c5f-8513-db6cc7744067" /> <!-- Describe your PR here. --> <!-- Sentry employees and contractors can delete or ignore the following. --> ### Legal Boilerplate Look, I get it. The entity doing business as "Sentry" was incorporated in the State of Delaware in 2015 as Functional Software, Inc. and is gonna need some rights from me in order to utilize my contributions in this here PR. So here's the deal: I retain all rights, title and interest in and to my contributions, and by keeping this boilerplate intact I confirm that Sentry can use, modify, copy, and redistribute my contributions, under Sentry's choice of terms.
1 parent a99d167 commit 7fde502

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/components/codecov/summary.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function useCreateSummaryFilterLink(filterBy: SummaryFilterKey) {
3838
const StyledSummaryEntryLabel = styled('span')`
3939
font-size: ${p => p.theme.fontSize.lg};
4040
font-weight: ${p => p.theme.fontWeight.bold};
41-
color: ${p => p.theme.gray300};
41+
color: ${p => p.theme.subText};
4242
`;
4343

4444
interface SummaryEntryLabelProps extends React.ComponentProps<typeof Hovercard> {
@@ -67,7 +67,7 @@ export const SummaryEntryValue = styled('span')`
6767

6868
const StyledSummaryEntryValueLink = styled('span')`
6969
font-variant-numeric: tabular-nums;
70-
color: ${p => p.theme.blue300};
70+
color: ${p => p.theme.linkColor};
7171
font-size: 2.25rem;
7272
7373
/* This stops the text from jumping when becoming bold */

0 commit comments

Comments
 (0)