Brackets theme for Google Code Prettify

Preview

<script type="text/javascript">
// Say hello world until the user starts questioning
// the meaningfulness of their existence.
function helloWorld(world) {
  for (var i = 42; --i >= 0;) {
    alert('Hello ' + String(world));
  }
}
</script>
<style>
p { color: pink }
b { color: blue }
u { color: "umber" }
</style>

CSS

.prettyprint {
  color: #535353;
  background-color: #f8f8f8;
}

.pln,
.typ,
.pun,
.opn,
.clo {
  color: #535353;
}

.str,
.atv {
  color: #f18900;
}

.kwd,
.tag {
  color: #446fb0;
}

.com,
.dec,
.var,
.linenums {
  color: #a2a2a2;
}

.lit,
.atn {
  color: #738d00;
}

.fun {
  color: #8757ad;
}