<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
joined {
white-space: nowrap;
}
</style>
<script>
document.onreadystatechange = function () {
// Solorized backround colors
var palette = ['white', 'black', '#002B36', '#FDF6E3']
var color = palette[0]
var body = document.getElementsByTagName('body')[0]
body.style.backgroundColor = color
body.onclick= function(){
color = palette[(palette.indexOf(color) + 1) % palette.length] || 'white'
body.style.backgroundColor = color
}
}
</script>
click to toggle background color