// This defines all syntax variables that syntax themes must implement when they
// include a syntax-variables.less file.

// General colors
@syntax-text-color: #<%= @base["02"]["hex"] %>;
@syntax-cursor-color: #<%= @base["02"]["hex"] %>;
@syntax-selection-color: #<%= @base["06"]["hex"] %>;
@syntax-background-color: #<%= @base["07"]["hex"] %>;

// Guide colors
@syntax-wrap-guide-color: #<%= @base["06"]["hex"] %>;
@syntax-indent-guide-color: #<%= @base["06"]["hex"] %>;
@syntax-invisible-character-color: #<%= @base["06"]["hex"] %>;

// For find and replace markers
@syntax-result-marker-color: #<%= @base["06"]["hex"] %>;
@syntax-result-marker-color-selected: #<%= @base["02"]["hex"] %>;

// Gutter colors
@syntax-gutter-text-color: #<%= @base["02"]["hex"] %>;
@syntax-gutter-text-color-selected: #<%= @base["02"]["hex"] %>;
@syntax-gutter-background-color: #<%= @base["07"]["hex"] %>;
@syntax-gutter-background-color-selected: rgba(176, 176, 176, 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: #<%= @base["0D"]["hex"] %>;
@syntax-color-added: #<%= @base["0B"]["hex"] %>;
@syntax-color-modified: #<%= @base["0A"]["hex"] %>;
@syntax-color-removed: #<%= @base["08"]["hex"] %>;