From f3abc55af38953140e29f5e980a9f5952593974b Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Fri, 4 Nov 2016 16:00:11 -0700 Subject: [PATCH] Remove ansi colors Fixes #1 --- src/themeGenerator.ts | 15 --------------- 1 file changed, 15 deletions(-) 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; -}