laughing-hipster/.atom/packages/jellybeans-syntax/stylesheets/syntax-variables.less

32 lines
946 B
Plaintext

@import "colors";
// This defines all syntax variables that syntax themes must implement when they
// include a syntax-variables.less file.
// General colors
@syntax-text-color: @text;
@syntax-cursor-color: @blue;
@syntax-selection-color: #404040;
@syntax-background-color: @background-color;
// Guide colors
@syntax-wrap-guide-color: lighten(@background-color, 10%);
@syntax-indent-guide-color: @dark-gray;
@syntax-invisible-character-color: @gray;
// For find and replace markers
@syntax-result-marker-color: @light-gray;
@syntax-result-marker-color-selected: white;
// Gutter colors
@syntax-gutter-text-color: @white;
@syntax-gutter-text-color-selected: @syntax-gutter-text-color;
@syntax-gutter-background-color: @dark-gray;
@syntax-gutter-background-color-selected: @gray;
// For git diff info. i.e. in the gutter
@syntax-color-renamed: @blue;
@syntax-color-added: @green;
@syntax-color-modified: @orange;
@syntax-color-removed: @red;