chore: Adds automated accented icon themes generation. Sets correct icon theme while choosing an accent.

This commit is contained in:
OctoD 2017-06-12 23:16:17 +02:00
parent 5913e6a4ba
commit a499aaa36b
54 changed files with 197 additions and 17 deletions

View file

@ -0,0 +1,26 @@
export interface IPaths {
/**
* Dist dir
* @type {string}
* @memberof IPaths
*/
DIST: string;
/**
* Icons dir
* @type {string}
* @memberof IPaths
*/
ICONS: string;
/**
* Src dir
* @type {string}
* @memberof IPaths
*/
SRC: string;
/**
* Themes dir
* @type {string}
* @memberof IPaths
*/
THEMES: string;
}