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

// General colors
@syntax-text-color: #68615e;
@syntax-cursor-color: #68615e;
@syntax-selection-color: #e6e2e0;
@syntax-background-color: #f1efee;

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

// For find and replace markers
@syntax-result-marker-color: #e6e2e0;
@syntax-result-marker-color-selected: #68615e;

// Gutter colors
@syntax-gutter-text-color: #68615e;
@syntax-gutter-text-color-selected: #68615e;
@syntax-gutter-background-color: #f1efee;
@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: #407ee7;
@syntax-color-added: #7b9726;
@syntax-color-modified: #c38418;
@syntax-color-removed: #f22c40;