From eb53798c4121ddf6bc628ed636fe36d30d18f763 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 29 Jun 2023 18:43:37 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(utils.ts):=20update=20color?= =?UTF-8?q?=20code=20for=20"retrievers"=20in=20nodeColors=20object=20The?= =?UTF-8?q?=20color=20code=20for=20the=20"retrievers"=20category=20in=20th?= =?UTF-8?q?e=20nodeColors=20object=20has=20been=20updated=20from=20"#F5B85?= =?UTF-8?q?A"=20to=20"#e6b25a".=20This=20change=20was=20made=20to=20ensure?= =?UTF-8?q?=20consistency=20and=20improve=20the=20visual=20representation?= =?UTF-8?q?=20of=20the=20"retrievers"=20category.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/utils.ts b/src/frontend/src/utils.ts index d8198ec3d..b50cad2bd 100644 --- a/src/frontend/src/utils.ts +++ b/src/frontend/src/utils.ts @@ -122,7 +122,7 @@ export const nodeColors: { [char: string]: string } = { toolkits: "#DB2C2C", wrappers: "#E6277A", utilities: "#31A3CC", - retrievers: "#F5B85A", + retrievers: "#e6b25a", unknown: "#9CA3AF", };