From 808769229079a9f7a1453112c196d18d4018594d Mon Sep 17 00:00:00 2001 From: duncan <duncan@dtail-design.nl> Date: Thu, 6 Jun 2024 19:28:46 +0000 Subject: [PATCH] fix(colors): fixed one color --- libs/config/src/colors.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/config/src/colors.ts b/libs/config/src/colors.ts index a1e3ace88..ae0c97cdb 100644 --- a/libs/config/src/colors.ts +++ b/libs/config/src/colors.ts @@ -97,7 +97,6 @@ export const tailwindColors = { light: 'hsl(var(--clr-light) / <alpha-value>)', dark: 'hsl(var(--clr-dark) / <alpha-value>)', }; - export const visualizationColors = { GPPrimary: { title: 'Primary', @@ -186,7 +185,7 @@ export const visualizationColors = { type: ['default', 'sequential', 'multi-hue'], colors: { 1: ['#DA6601'], - 2: ['#F9CB4E', '#A91919'], + 2: ['#FB9637', '#A91919'], 3: ['#F9CB4E', '#FB9637', '#A91919'], 4: ['#F9CB4E', '#FB9637', '#DA6601', '#A91919'], 5: ['#FBE5A7', '#F9CB4E', '#FB9637', '#DA6601', '#A91919'], -- GitLab