syntax-highlighting
Version:
Syntax Highlighting Colorschemes for many applications
33 lines (27 loc) • 1.11 kB
text/less
// Atom template by Jan T. Sott (https://github.com/idleberg/)
// Base16 scheme and Base16 Builder by Chris Kempson (https://github.com/chriskempson)
// This defines all syntax variables that syntax themes must implement when they
// include a syntax-variables.less file.
// General colors
@syntax-text-color: #929181;
@syntax-cursor-color: #929181;
@syntax-selection-color: #5f5e4e;
@syntax-background-color: #22221b;
// Guide colors
@syntax-wrap-guide-color: #6c6b5a;
@syntax-indent-guide-color: #6c6b5a;
@syntax-invisible-character-color: #6c6b5a;
// For find and replace markers
@syntax-result-marker-color: #6c6b5a;
@syntax-result-marker-color-selected: #929181;
// Gutter colors
@syntax-gutter-text-color: #929181;
@syntax-gutter-text-color-selected: #929181;
@syntax-gutter-background-color: #22221b;
@syntax-gutter-background-color-selected: rgba(80, 80, 80, 0.33);
// For git diff info. i.e. in the gutter
// These are static and were not extracted from your textmate theme
@syntax-color-renamed: #36a166;
@syntax-color-added: #7d9726;
@syntax-color-modified: #a5980d;
@syntax-color-removed: #ba6236;