syntax-highlighting
Version:
Syntax Highlighting Colorschemes for many applications
67 lines (57 loc) • 1.39 kB
text/less
/**
* Base16 Duotone-DarkLake Dark
*
* @author adapted from: Simurai (https://github.com/simurai/duotone-dark-syntax/)
*
* Rainbow template by Jan T. Sott (https://github.com/idleberg/)
* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
*/
@base00: #182234;
@base01: #222d44;
@base02: #3a4b6e;
@base03: #46587c;
@base04: #526589;
@base05: #4e72bc;
@base06: #a5c2fe;
@base07: #e1ebff;
@base08: #295cc2;
@base09: #f075b5;
@base0a: #f584bf;
@base0b: #ba97a9;
@base0c: #ffa3d3;
@base0d: #f994c9;
@base0e: #406abf;
@base0f: #3264c8;
pre {
background-color: @base00;
word-wrap: break-word;
margin: 0px;
padding: 10px;
color: @base07;
font-size: 14px;
margin-bottom: 20px;
}
pre, code {
font-family: 'Monaco', courier, monospace;
}
pre .comment {
color: @base03;
}
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
}