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