mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 17:27:59 -05:00
* Replace tiny bitmaps with base64-encoded URIs * Optimize SVGs; replace logo PNG with SVG * Modernize favicon * Embed CSS; a bit unorthodox, but we’re a single page so there’s no point in separate .css files and their separate HTTP requests
67 lines
1.6 KiB
CSS
67 lines
1.6 KiB
CSS
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
|
/* Original code:; http://softwaremaniacs.org/media/soft/highlight/styles/tomorrow.css */
|
|
/* But forked for CoffeeScript */
|
|
.tomorrow-comment, pre .comment, pre .title {
|
|
color: #8e908c;
|
|
}
|
|
|
|
.tomorrow-red, pre .variable, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
|
|
color: #c82829;
|
|
}
|
|
|
|
.tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .params, pre .constant {
|
|
color: #000000;
|
|
}
|
|
|
|
.tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute {
|
|
color: #eab700;
|
|
}
|
|
|
|
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
|
color: #718c00;
|
|
}
|
|
|
|
.tomorrow-aqua, pre .css .hexcolor {
|
|
color: #3e999f;
|
|
}
|
|
|
|
.tomorrow-blue, pre .function, pre .function .title, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
|
|
color: #21439C;
|
|
}
|
|
|
|
.tomorrow-purple, pre .keyword, pre .reserved, pre .javascript .function {
|
|
color: #FF5600;
|
|
}
|
|
|
|
pre .subst {
|
|
color: #A535AE;
|
|
}
|
|
|
|
pre .literal {
|
|
color: #A535AE;
|
|
}
|
|
|
|
pre .property {
|
|
color: #A535AE;
|
|
}
|
|
|
|
pre .class .title {
|
|
color: #21439C;
|
|
}
|
|
|
|
pre code {
|
|
display: block;
|
|
background: white;
|
|
color: #000000;
|
|
}
|
|
|
|
pre .coffeescript .javascript,
|
|
pre .javascript .xml,
|
|
pre .tex .formula,
|
|
pre .xml .javascript,
|
|
pre .xml .vbscript,
|
|
pre .xml .css,
|
|
pre .xml .cdata {
|
|
opacity: 0.5;
|
|
}
|