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

@ -18,7 +18,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-fe256b39-3ec3-4fe3-8998-b76aa0bfb600',
name: 'New',
color: '#B76796',
color: 'red',
index: 0,
type: 'open',
pipelineId: 'twenty-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -32,7 +32,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-fe256b39-3ec3-4fe4-8998-b76aa0bfb600',
name: 'Screening',
color: '#CB912F',
color: 'purple',
index: 1,
type: 'ongoing',
pipelineId: 'twenty-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -46,7 +46,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-fe256b39-3ec3-4fe5-8998-b76aa0bfb600',
name: 'Meeting',
color: '#9065B0',
color: 'sky',
index: 2,
type: 'ongoing',
pipelineId: 'twenty-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -60,7 +60,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-fe256b39-3ec3-4fe6-8998-b76aa0bfb600',
name: 'Proposal',
color: '#337EA9',
color: 'turquoise',
index: 3,
type: 'ongoing',
pipelineId: 'twenty-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -74,7 +74,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-fe256b39-3ec3-4fe7-8998-b76aa0bfb600',
name: 'Customer',
color: '#079039',
color: 'yellow',
index: 4,
type: 'won',
pipelineId: 'twenty-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -148,7 +148,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-fe256b39-3ec3-4fe3-8998-a76aa0bfb600',
name: 'New',
color: '#B76796',
color: 'red',
index: 1,
type: 'open',
pipelineId: 'twenty-fe256b39-3ec3-4fe3-8997-b74aa0bfb400',
@ -185,7 +185,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-dev-fe256b39-3ec3-4fe3-8998-b76aa0bfb600',
name: 'New',
color: '#B76796',
color: 'red',
index: 0,
type: 'open',
pipelineId: 'twenty-dev-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -199,7 +199,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-dev-fe256b39-3ec3-4fe4-8998-b76aa0bfb600',
name: 'Screening',
color: '#CB912F',
color: 'purple',
index: 1,
type: 'ongoing',
pipelineId: 'twenty-dev-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -213,7 +213,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-dev-fe256b39-3ec3-4fe5-8998-b76aa0bfb600',
name: 'Meeting',
color: '#9065B0',
color: 'sky',
index: 2,
type: 'ongoing',
pipelineId: 'twenty-dev-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -227,7 +227,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-dev-fe256b39-3ec3-4fe6-8998-b76aa0bfb600',
name: 'Proposal',
color: '#337EA9',
color: 'turquoise',
index: 3,
type: 'ongoing',
pipelineId: 'twenty-dev-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',
@ -241,7 +241,7 @@ export const seedPipelines = async (prisma: PrismaClient) => {
create: {
id: 'twenty-dev-fe256b39-3ec3-4fe7-8998-b76aa0bfb600',
name: 'Customer',
color: '#079039',
color: 'yellow',
index: 4,
type: 'won',
pipelineId: 'twenty-dev-fe256b39-3ec3-4fe3-8997-b75aa0bfb400',