From 9c5b5ff82337cccdae59c0f8c11cf47793e7b37d Mon Sep 17 00:00:00 2001 From: Miguel Solorio Date: Wed, 11 Jun 2025 10:14:18 -0700 Subject: Allow themes to update gradient colors (#914) --- packages/cli/src/ui/themes/atom-one-dark.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/cli/src/ui/themes/atom-one-dark.ts') diff --git a/packages/cli/src/ui/themes/atom-one-dark.ts b/packages/cli/src/ui/themes/atom-one-dark.ts index 84849a54..951b8898 100644 --- a/packages/cli/src/ui/themes/atom-one-dark.ts +++ b/packages/cli/src/ui/themes/atom-one-dark.ts @@ -4,7 +4,7 @@ * SPDX-License-Identifier: Apache-2.0 */ -import { darkTheme, Theme, type ColorsTheme } from './theme.js'; +import { type ColorsTheme, Theme } from './theme.js'; const atomOneDarkColors: ColorsTheme = { type: 'dark', @@ -19,7 +19,7 @@ const atomOneDarkColors: ColorsTheme = { AccentRed: '#e06c75', Comment: '#5c6370', Gray: '#5c6370', - GradientColors: darkTheme.GradientColors, + GradientColors: ['#61aeee', '#98c379'], }; export const AtomOneDark: Theme = new Theme( -- cgit v1.2.3