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';