function createTheme
createTheme(primaryColor?: PrimaryColor): Theme

Create a theme with a specific primary color

Examples

// For Periodic - use teal const periodicTheme = createTheme('teal');

// For another project - use violet const brandTheme = createTheme('violet');

Parameters

optional
primaryColor: PrimaryColor = blue

Return Type