Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created February 24, 2020 04:36
Show Gist options
  • Save jsmanifest/640565dce79518b03db83780743c667a to your computer and use it in GitHub Desktop.
Save jsmanifest/640565dce79518b03db83780743c667a to your computer and use it in GitHub Desktop.
function bloodTheme(originalTheme) {
const originalStylesheet = originalTheme.createStylesheet()
originalTheme.createStylesheet = function() {
return {
name: 'blood',
...originalStylesheet,
header: {
...originalStylesheet.header,
color: '#fff',
fontStyle: 'italic',
},
background: {
...originalStylesheet.background,
color: '#fff',
backgroundColor: '#C53719',
},
button: {
...originalStylesheet.button,
backgroundColor: 'maroon',
color: '#fff',
},
primary: '#C53719',
secondary: 'maroon',
textColor: '#fff',
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment