Created
February 24, 2020 04:35
-
-
Save jsmanifest/f88a536f0de7d3355a5b9ab6c043c6e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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