Skip to content

Commit

Permalink
fix: add more unique colors
Browse files Browse the repository at this point in the history
  • Loading branch information
corteggiano committed Sep 27, 2023
1 parent d704292 commit 8641b1f
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 13 deletions.
60 changes: 48 additions & 12 deletions packages/core-util/src/sdks/colorPalette.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,55 @@
// color palette copied from https://cloudscape.design/foundation/visual-foundation/data-vis-colors/
export const colorPalette = [
'#688ae8',
'#c33d69',
'#2ea597',
'#8456ce',
'#e07941',
'#3759ce',
'#7d2105',
'#3184c2',
'#7d8998',
'#b2911c',
'#67a353',
'#ba2e0f',
'#5978e3',
'#ce567c',
'#1c8e81',
'#9469d6',
'#cc5f21',
'#273ea5',
'#962249',
'#096f64',
'#03524a',
'#6237a7',
'#a84401',
'#273ea5',
'#7e3103',
'#6f062f',
'#003e38',
'#431d84',
'#037f0c',
'#602400',
'#125502',
'#314fbf',
'#4d3901',
'#a32952',
'#06645a',
'#6b40b2',
'#983c02',
'#6f5504',
'#1f3191',
'#780d35',
'#03524a',
'#01443e',
'#4a238b',
'#7e3103',
'#1b2b88',
'#692801',
'#5f6b7a',
'#3759ce',
'#b1325c',
'#096f64',
'#7749bf',
'#a84401',
'#9c7b0b',
'#23379b',
'#8b1b42',
'#014b44',
'#59309d',
'#732c02',
'#1f8104',
'#4066df',
'#c33d69',
'#0d7d70',
'#8456ce',
'#bc4d01',
];
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const typeOptions = [
defaultTypeOption,
{ label: 'Step before', value: 'step-start', description: 'Step points rendered at the end of the step.' },
{ label: 'Step middle', value: 'step-middle', description: 'Step points rendered in the middle of the step.' },
{ label: 'Step after', value: 'step-end', description: 'Step points rendered at the beginning of the step.' },
{ label: 'Step after', value: 'step-after', description: 'Step points rendered at the beginning of the step.' },
] as const;

type TypeSectionOptions = {
Expand Down

0 comments on commit 8641b1f

Please sign in to comment.