The various groupings of colours to use for different components in an application. Can be extended to provide application specific groupings.
interface IMyTheme extends ITheme {}
const theme: Readonly = new MyTheme();
// The normal theme colours theme.colour.font.primary.normal; theme.colour.background.primary.normal; theme.colour.border.primary.normal;
// The extended grouping theme.colour.message.primary.normal; `
`
ThemeColour
The style mixins to use for the font colour
ThemeColours
The various groupings of colours to use for different components in an application. Can be extended to provide application specific groupings.
interface IMyTheme extends ITheme {}
const theme: Readonly = new MyTheme();
// The normal theme colours theme.colour.font.primary.normal; theme.colour.background.primary.normal; theme.colour.border.primary.normal;
// The extended grouping theme.colour.message.primary.normal;
`
ThemeColour