Skip to content

Conversation

@JonasBa
Copy link
Member

@JonasBa JonasBa commented Jan 12, 2026

Removes yellow100 to yellow400 deprecated range

Fix DE-304

@JonasBa JonasBa requested review from a team as code owners January 12, 2026 23:46
@linear
Copy link

linear bot commented Jan 12, 2026

@github-actions github-actions bot added the Scope: Frontend Automatically applied to PRs that change frontend components label Jan 12, 2026
Comment on lines -57 to +63
background-color: ${themeColor === 'pink' ? p.theme.colors.pink400 : p.theme[`${themeColor}400`]};
background-color: ${themeColor === 'pink' ? p.theme.colors.pink500 : themeColor === 'yellow' ? p.theme.colors.yellow500 : p.theme[`${themeColor}400`]};
}
.ansi-${ansiColor}-fg {
color: ${themeColor === 'pink' ? p.theme.colors.pink400 : p.theme[`${themeColor}400`]};
color: ${themeColor === 'pink' ? p.theme.colors.pink500 : themeColor === 'yellow' ? p.theme.colors.yellow500 : p.theme[`${themeColor}400`]};
}
.ansi-bright-${ansiColor}-fg {
color: ${themeColor === 'pink' ? p.theme.colors.pink200 : p.theme[`${themeColor}200`]};
color: ${themeColor === 'pink' ? p.theme.colors.pink200 : themeColor === 'yellow' ? p.theme.colors.yellow200 : p.theme[`${themeColor}200`]};
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since all the 400 colors will become 500 colors, in the end, this is just gonna be p.theme.colors[${themeColor}500]} without any ternaries.

that’s what I did for the red removal, I think we’re all gonna have conflicts on this 😅

#106254

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, we're going to have conflicts here, but they should be easy to resolve at least :D

@JonasBa JonasBa enabled auto-merge (squash) January 14, 2026 18:03
@JonasBa JonasBa merged commit e3e8110 into master Jan 14, 2026
53 checks passed
@JonasBa JonasBa deleted the jb/de-304 branch January 14, 2026 18:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Scope: Frontend Automatically applied to PRs that change frontend components

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants