From b8678a549320c474ab1bf65cee88436c72f7b04e Mon Sep 17 00:00:00 2001 From: ansh Date: Mon, 1 Jun 2026 21:31:40 +0530 Subject: [PATCH] Align terminal theme with brokerage palette --- src/theme.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/theme.ts b/src/theme.ts index 9ca16edb2..41bf8cf28 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -2,18 +2,18 @@ import type { EditorTheme, MarkdownTheme, SelectListTheme } from '@mariozechner/ import chalk from 'chalk'; const palette = { - primary: '#258bff', - primaryLight: '#a5cfff', - success: 'green', - error: 'red', - warning: 'yellow', - muted: '#a6a6a6', - mutedDark: '#303030', - accent: 'cyan', - white: '#ffffff', - info: '#6CB6FF', - queryBg: '#3D3D3D', - border: '#303030', + primary: '#0f7a52', + primaryLight: '#7bc8a5', + success: '#0f7a52', + error: '#b94f4f', + warning: '#b18a44', + muted: '#8c968f', + mutedDark: '#23312b', + accent: '#b18a44', + white: '#f4f2ec', + info: '#7bc8a5', + queryBg: '#18231f', + border: '#2f3f37', }; const fg = (color: string) => (text: string) => chalk.hex(color)(text);