Style guide
When building xApps, it makes a lot of sense to stick to the design (colour palette, font, etc.) as used by Xumm to offer the best user experience to xApp users.
Last updated
Was this helpful?
Was this helpful?
https://xumm.app/assets/themes/xapp/xumm-{theme}/bootstrap.min.css<script>
var theme = ((new URLSearchParams(document.location.href))
.get('xAppStyle') || 'light').toLowerCase()
var link = document.createElement('link')
link.href = 'https://xumm.app/assets/themes/xapp/xumm-'
+ theme + '/bootstrap.min.css'
link.type = 'text/css'
link.rel = 'stylesheet'
document.getElementsByTagName('head')[0].appendChild(link)
</script>