Replace default colors for headers in Boards (#1128)

- replace colors for headers
This commit is contained in:
brendanlaschke
2023-08-09 17:28:55 +02:00
committed by GitHub
parent 9bd42121d3
commit 2b166927d1
4 changed files with 26 additions and 26 deletions

View File

@ -8,31 +8,31 @@ export const pipeline = {
id: 'pipeline-stage-1',
name: 'New',
index: 0,
color: '#B76796',
color: 'red',
},
{
id: 'pipeline-stage-2',
name: 'Screening',
index: 1,
color: '#CB912F',
color: 'purple',
},
{
id: 'pipeline-stage-3',
name: 'Meeting',
index: 2,
color: '#9065B0',
color: 'sky',
},
{
id: 'pipeline-stage-4',
name: 'Proposal',
index: 3,
color: '#337EA9',
color: 'turquoise',
},
{
id: 'pipeline-stage-5',
name: 'Customer',
index: 4,
color: '#079039',
color: 'yellow',
},
],
} as Pipeline;