From 17a8151b2f866cd432cc2add33318daa9ef45458 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 24 May 2020 18:54:10 +0000 Subject: [PATCH] fix(core): update --- ts/domtools.colors.ts | 6 ++++++ ts/index.ts | 1 + 2 files changed, 7 insertions(+) create mode 100644 ts/domtools.colors.ts diff --git a/ts/domtools.colors.ts b/ts/domtools.colors.ts new file mode 100644 index 0000000..867068d --- /dev/null +++ b/ts/domtools.colors.ts @@ -0,0 +1,6 @@ +export interface IDeesColorSet { + primaryAccent: string; + secondaryAccent: string; + primaryBackground: string; + secondaryBackground: string; +} \ No newline at end of file diff --git a/ts/index.ts b/ts/index.ts index 3daa08e..b5fd1f8 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -1,3 +1,4 @@ +export * from './domtools.colors'; export * from './domtools.elementbasicsetup'; export * from './domtools.elementbasicstyles';