chore: Dumps old code

This commit is contained in:
OctoD 2017-06-23 13:55:13 +02:00
parent e47ab01d07
commit 36826d2e2f
4 changed files with 0 additions and 32 deletions

View file

@ -1,3 +0,0 @@
export interface IPlainObject {
[index: string]: string;
}

View file

@ -1,20 +0,0 @@
{
"accents": {
"Acid Lime": "#C6FF00",
"Blue": "#2979FF",
"Breaking Bad": "#388E3C",
"Bright Teal": "#64FFDA",
"Cyan": "#00BCD4",
"Graphite": "#616161",
"Indigo": "#5C6BC0",
"Lime": "#7CB342",
"Orange": "#FF7042",
"Pink": "#FF4081",
"Purple": "#AB47BC",
"Red": "#E57373",
"Sky": "#84FFFF",
"Tomato": "#F44336",
"Teal": "#80CBC4",
"Yellow": "#FFA000"
}
}

View file

@ -1,4 +0,0 @@
export interface IAccents {
teal: string;
[index: string]: string;
}

View file

@ -1,5 +0,0 @@
import { IAccents } from "./iaccents";
export interface IThemeConfigCommons {
accents: IAccents;
}