diff --git a/src/types/data/CustomerTheme.ts b/src/types/data/CustomerTheme.ts index f57eadb5f..fc150b76e 100644 --- a/src/types/data/CustomerTheme.ts +++ b/src/types/data/CustomerTheme.ts @@ -5,5 +5,9 @@ import { Theme } from './Theme'; * * CustomerTheme is what's really used for theming, and doesn't include useless properties from the Theme entity. * Also, all properties defined in Theme will be set in CustomerTheme, because fallback values will have been applied. + * + * Inspired by MaterialUI Design system. + * + * @see https://material.io/design/color/the-color-system.html#color-theme-creation */ export type CustomerTheme = Required> & {};