From 52942a9aaf674980c47e1d074466a3d833decc38 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 5 Sep 2015 12:02:25 -0500 Subject: Adds base project structure --- styles/syntax-variables.less | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 styles/syntax-variables.less (limited to 'styles/syntax-variables.less') diff --git a/styles/syntax-variables.less b/styles/syntax-variables.less new file mode 100644 index 0000000..3fa8cda --- /dev/null +++ b/styles/syntax-variables.less @@ -0,0 +1,31 @@ +@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: @very-light-gray; +@syntax-cursor-color: white; +@syntax-selection-color: lighten(@dark-gray, 10%); +@syntax-background-color: @very-dark-gray; + +// Guide colors +@syntax-wrap-guide-color: @dark-gray; +@syntax-indent-guide-color: @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: @very-light-gray; +@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; -- cgit