Remove ansi colors

Fixes #1
This commit is contained in:
Daniel Imms
2016-11-04 16:00:11 -07:00
parent 3a1478884d
commit f3abc55af3

View File

@@ -3,10 +3,6 @@ export interface IThemeGenerator {
} }
export interface IColorSet { export interface IColorSet {
ansi?: {
normal?: IAnsiColorSet;
bright?: IAnsiColorSet;
}
syntax?: { syntax?: {
functionCall?: string; functionCall?: string;
identifier?: string; identifier?: string;
@@ -23,14 +19,3 @@ export interface IColorSet {
foreground?: string; foreground?: string;
} }
} }
export interface IAnsiColorSet {
black?: string;
red?: string;
green?: string;
yellow?: string;
blue?: string;
magenta?: string;
cyan?: string;
white?: string;
}