// 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: #a6a28c;
@syntax-cursor-color: #a6a28c;
@syntax-selection-color: #6e6b5e;
@syntax-background-color: #20201d;

// Guide colors
@syntax-wrap-guide-color: #7d7a68;
@syntax-indent-guide-color: #7d7a68;
@syntax-invisible-character-color: #7d7a68;

// For find and replace markers
@syntax-result-marker-color: #7d7a68;
@syntax-result-marker-color-selected: #a6a28c;

// Gutter colors
@syntax-gutter-text-color: #a6a28c;
@syntax-gutter-text-color-selected: #a6a28c;
@syntax-gutter-background-color: #20201d;
@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: #6684e1;
@syntax-color-added: #60ac39;
@syntax-color-modified: #ae9513;
@syntax-color-removed: #d73737;