syntax-highlighting
Version:
Syntax Highlighting Colorschemes for many applications
67 lines (57 loc) • 1.4 kB
text/stylus
/**
* Base16 Duotone-Light Light
*
* @author adapted from: Simurai (https://github.com/simurai/duotone-light-syntax/)
*
* Rainbow template by Jan T. Sott (https://github.com/idleberg/)
* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
*/
$base00 = #2d2006;
$base01 = #f0ebe0;
$base02 = #e5ddcc;
$base03 = #dbcfb8;
$base04 = #d1c2a3;
$base05 = #b29762;
$base06 = #b6ad9a;
$base07 = #faf8f5;
$base08 = #896724;
$base09 = #063289;
$base0a = #0e4ecd;
$base0b = #2d3443;
$base0c = #728fcb;
$base0d = #1657da;
$base0e = #ae8c47;
$base0f = #997733;
pre {
background-color: $base07;
word-wrap: break-word;
margin: 0px;
padding: 10px;
color: $base00;
font-size: 14px;
margin-bottom: 20px;
}
pre, code {
font-family: 'Monaco', courier, monospace;
}
pre .comment {
color: $base04;
}
pre .variable.global, pre .variable.class, pre .variable.instance {
color: $base08; // red
}
pre .constant.numeric, pre .constant.language, pre .constant.hex-color, pre .keyword.unit {
color: $base09; // orange
}
pre .constant, pre .entity, pre .entity.class, pre .support {
color: $base0a; // yellow
}
pre .constant.symbol, pre .string {
color: $base0b; // green
}
pre .entity.function, pre .support.css-property, pre .selector {
color: $base0d; // blue
}
pre .keyword, pre .storage {
color: $base0e; // purple
}