Remove foreground for themes other than shades of purple and holiday. (#14606)

Co-authored-by: Miguel Solorio <miguelsolorio@google.com>
This commit is contained in:
Jacob Richman
2025-12-16 15:44:46 -08:00
committed by GitHub
parent ba100642e3
commit db643e9166
3 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ import { lightSemanticColors } from './semantic-tokens.js';
const ansiLightColors: ColorsTheme = {
type: 'light',
Background: 'white',
Foreground: '#444',
Foreground: '',
LightBlue: 'blue',
AccentBlue: 'blue',
AccentPurple: 'purple',

View File

@@ -10,7 +10,7 @@ import { darkSemanticColors } from './semantic-tokens.js';
const ansiColors: ColorsTheme = {
type: 'dark',
Background: 'black',
Foreground: 'white',
Foreground: '',
LightBlue: 'bluebright',
AccentBlue: 'blue',
AccentPurple: 'magenta',

View File

@@ -83,7 +83,7 @@ export interface CustomTheme {
export const lightTheme: ColorsTheme = {
type: 'light',
Background: '#FAFAFA',
Foreground: '#383A42',
Foreground: '',
LightBlue: '#89BDCD',
AccentBlue: '#3B82F6',
AccentPurple: '#8B5CF6',
@@ -102,7 +102,7 @@ export const lightTheme: ColorsTheme = {
export const darkTheme: ColorsTheme = {
type: 'dark',
Background: '#1E1E2E',
Foreground: '#CDD6F4',
Foreground: '',
LightBlue: '#ADD8E6',
AccentBlue: '#89B4FA',
AccentPurple: '#CBA6F7',
@@ -121,7 +121,7 @@ export const darkTheme: ColorsTheme = {
export const ansiTheme: ColorsTheme = {
type: 'ansi',
Background: 'black',
Foreground: 'white',
Foreground: '',
LightBlue: 'blue',
AccentBlue: 'blue',
AccentPurple: 'magenta',