Skip to content

Commit

Permalink
fix(chart-palette): Remove additional color (#81034)
Browse files Browse the repository at this point in the history
Remove the 6th color in the 5 item color palette.
  • Loading branch information
ArthurKnaus authored Nov 20, 2024
1 parent 1a3a61e commit 805cc77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/app/constants/chartPalette.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const CHART_PALETTE = [
['#444674', '#f2b712'],
['#444674', '#d6567f', '#f2b712'],
['#444674', '#a35488', '#ef7061', '#f2b712'],
['#444674', '#895289', '#d6567f', '#f38150', '#f2b712', '#a397f7'],
['#444674', '#895289', '#d6567f', '#f38150', '#f2b712'],
['#444674', '#7a5088', '#b85586', '#e9626e', '#f58c46', '#f2b712'],
['#444674', '#704f87', '#a35488', '#d6567f', '#ef7061', '#f59340', '#f2b712'],
[
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ const dataCategory = {
[DATA_CATEGORY_INFO.transaction.plural]: CHART_PALETTE[4][2],
[DATA_CATEGORY_INFO.attachment.plural]: CHART_PALETTE[4][1],
[DATA_CATEGORY_INFO.replay.plural]: CHART_PALETTE[4][4],
[DATA_CATEGORY_INFO.monitorSeat.plural]: CHART_PALETTE[4][5],
[DATA_CATEGORY_INFO.monitorSeat.plural]: '#a397f7',
};

/**
Expand Down

0 comments on commit 805cc77

Please sign in to comment.