Merge pull request #32 from mjbvz/pretty-print-theme

Pretty Print Output Theme JSON
This commit is contained in:
Daniel Imms
2017-05-02 19:21:02 -07:00
committed by GitHub

View File

@@ -101,6 +101,6 @@ export class VscodeThemeGenerator implements IThemeGenerator {
theme.colors['tab.border'] = '#00000033'; theme.colors['tab.border'] = '#00000033';
theme.colors['editorLineNumber.foreground'] = '#FFFFFF4D'; theme.colors['editorLineNumber.foreground'] = '#FFFFFF4D';
return JSON.stringify(theme); return JSON.stringify(theme, null, 2);
} }
} }