From 6ad5350d3a98286b0b64ca3dbb03cd62995f511e Mon Sep 17 00:00:00 2001 From: t11s Date: Mon, 10 Jun 2024 22:29:51 -0700 Subject: [PATCH] feat: hyperbolic colors --- src/utils/color.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/color.ts b/src/utils/color.ts index a39097f..5fd72b3 100644 --- a/src/utils/color.ts +++ b/src/utils/color.ts @@ -22,7 +22,7 @@ export function getFluxNodeTypeColor(fluxNodeType: FluxNodeType) { case FluxNodeType.TweakedGPT: return "#f7d0a1"; case FluxNodeType.System: - return "#C5E2F6"; + return "#EEEDFD"; } } @@ -35,6 +35,6 @@ export function getFluxNodeTypeDarkColor(fluxNodeType: FluxNodeType) { case FluxNodeType.TweakedGPT: return "#CB7937"; case FluxNodeType.System: - return "#5F8AF7"; + return "#594BE8"; } }