From 59f8f5d9f73d3a364198fde0cce2bcb94d4632d6 Mon Sep 17 00:00:00 2001 From: tonym Date: Wed, 14 Jan 2026 23:19:32 -0600 Subject: [PATCH] style: Keep teal theme color Co-Authored-By: Claude Opus 4.5 --- client/src/contexts/color-mode/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/contexts/color-mode/index.tsx b/client/src/contexts/color-mode/index.tsx index 585955b..2a08ccd 100644 --- a/client/src/contexts/color-mode/index.tsx +++ b/client/src/contexts/color-mode/index.tsx @@ -40,6 +40,10 @@ export const ColorModeContextProvider: React.FC = ({ children // you can change the theme colors here. example: ...RefineThemes.Magenta, theme={{ algorithm: mode === "light" ? defaultAlgorithm : darkAlgorithm, + token: { + colorPrimary: "#0891b2", + colorInfo: "#0891b2", + }, }} > {children}