Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created February 24, 2020 04:35
Show Gist options
  • Save jsmanifest/f88a536f0de7d3355a5b9ab6c043c6e7 to your computer and use it in GitHub Desktop.
Save jsmanifest/f88a536f0de7d3355a5b9ab6c043c6e7 to your computer and use it in GitHub Desktop.
function debugTheme(originalTheme) {
const stylesheet = originalTheme.createStylesheet()
console.log(
'%cStylesheet created:',
'color:green;font-weight:bold;',
stylesheet,
)
if (!stylesheet.primary) {
console.warn(
'A stylesheet was created without a primary theme color. There may be layout glitches.',
)
}
}
const theme = new Theme()
bloodTheme(theme)
if (process.env.NODE_ENV === 'development') debugTheme(theme)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment