// 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: #8ca68c;
@syntax-cursor-color: #8ca68c;
@syntax-selection-color: #5e6e5e;
@syntax-background-color: #131513;

// Guide colors
@syntax-wrap-guide-color: #687d68;
@syntax-indent-guide-color: #687d68;
@syntax-invisible-character-color: #687d68;

// For find and replace markers
@syntax-result-marker-color: #687d68;
@syntax-result-marker-color-selected: #8ca68c;

// Gutter colors
@syntax-gutter-text-color: #8ca68c;
@syntax-gutter-text-color-selected: #8ca68c;
@syntax-gutter-background-color: #131513;
@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: #3d62f5;
@syntax-color-added: #29a329;
@syntax-color-modified: #98981b;
@syntax-color-removed: #e6193c;