6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
|
export interface IDeesColorSet {
|
||
|
primaryAccent: string;
|
||
|
secondaryAccent: string;
|
||
|
primaryBackground: string;
|
||
|
secondaryBackground: string;
|
||
|
}
|