60 lines
759 B
CSS
60 lines
759 B
CSS
/**
|
|
* Zenburnesque theme
|
|
*
|
|
* Adapted from Ultraviolet RubyGem
|
|
*
|
|
* @author Flinn Mueller
|
|
* @version 1.0
|
|
*/
|
|
pre {
|
|
background: #404040;
|
|
word-wrap: break-word;
|
|
margin: 0px;
|
|
padding: 10px;
|
|
color: #dedede;
|
|
font-size: 14px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
pre, code {
|
|
font-family: 'Monaco', courier, monospace;
|
|
}
|
|
|
|
pre .comment {
|
|
color: #709070;
|
|
font-style: italic;
|
|
}
|
|
|
|
pre .integer {
|
|
color: #22C0FF;
|
|
}
|
|
|
|
pre .storage {
|
|
color: #6080FF;
|
|
}
|
|
|
|
/* This includes regexes */
|
|
pre .string {
|
|
color: #FF2020;
|
|
}
|
|
|
|
pre .keyword, pre .selector {
|
|
color: #ffffa0;
|
|
}
|
|
|
|
pre .inherited-class {
|
|
font-style: italic;
|
|
}
|
|
|
|
pre .entity {
|
|
color: #F09040;
|
|
}
|
|
|
|
pre .support {
|
|
color: #C83730;
|
|
}
|
|
|
|
pre .variable.class {
|
|
color: #FF8000;
|
|
}
|