diff --git a/src/themeGenerator.ts b/src/themeGenerator.ts index 612f169..161f30a 100644 --- a/src/themeGenerator.ts +++ b/src/themeGenerator.ts @@ -3,10 +3,6 @@ export interface IThemeGenerator { } export interface IColorSet { - ansi?: { - normal?: IAnsiColorSet; - bright?: IAnsiColorSet; - } syntax?: { functionCall?: string; identifier?: string; @@ -23,14 +19,3 @@ export interface IColorSet { foreground?: string; } } - -export interface IAnsiColorSet { - black?: string; - red?: string; - green?: string; - yellow?: string; - blue?: string; - magenta?: string; - cyan?: string; - white?: string; -}