-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
ref(theme) remove yellow100-yellow400 #106144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
static/app/components/events/attachmentViewers/logFileViewer.tsx
Outdated
Show resolved
Hide resolved
static/app/components/events/attachmentViewers/logFileViewer.tsx
Outdated
Show resolved
Hide resolved
static/app/views/dashboards/widgets/bigNumberWidget/thresholdsIndicator.tsx
Show resolved
Hide resolved
| 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`]}; |
There was a problem hiding this comment.
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 😅
There was a problem hiding this comment.
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
Removes yellow100 to yellow400 deprecated range
Fix DE-304