From 63017ecdcb99f1cd0e4ade08e71d3d37c58f0ffd Mon Sep 17 00:00:00 2001 From: Rinas Muhammed Date: Thu, 16 Mar 2017 18:38:19 +0530 Subject: [PATCH] highlight line color Sublime's `"highlight_line": true,` settings gives `#2F2F25` as background colors for selected line. --- app/styles/themes/monokai.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/styles/themes/monokai.scss b/app/styles/themes/monokai.scss index 5230ee9..2dcaf10 100755 --- a/app/styles/themes/monokai.scss +++ b/app/styles/themes/monokai.scss @@ -19,6 +19,6 @@ $dark-theme: true; #F92672, // CSS Keywords (!important, etc.) #F92672, // HTML Tags / CSS ID/Class Selectors / JS Keywords #E6DB74, // HTML/CSS/JS Strings -#F92672, // CSS Tag Selectors / JS Operators (in Canary) +#2F2F25, // CSS Tag Selectors / JS Operators (in Canary) #A6E22E // Accent / Highlight -); \ No newline at end of file +);