chore(theme-settings): removed theme-settings custom func

This commit is contained in:
LasaleFamine 2018-04-21 18:14:17 +02:00
parent 00c85e736c
commit a261f64673
2 changed files with 0 additions and 13 deletions

View file

@ -2,18 +2,8 @@ import * as vscode from 'vscode';
import { IDefaults } from "../interfaces/idefaults";
import { IThemeCustomProperties } from "../interfaces/itheme-custom-properties";
import { IThemeSettings } from "../interfaces/itheme-settings";
import {getPackageJSON} from './fs';
/**
* Gets theme settings
* @export
* @returns {*}
*/
export function getThemeSettings(): IThemeSettings {
return vscode.workspace.getConfiguration().get<IThemeSettings>('workbench', {});
}
/**
* Gets saved accent
* @export

View file

@ -1,3 +0,0 @@
export interface IThemeSettings {
colorTheme?: string;
}