From 8c6fe7a5406e0bd5e2d0bb033edd71ccb2fee4b0 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Fri, 19 Jul 2013 13:55:29 -0700 Subject: [PATCH 1/2] lighten selection color so it's more clear. --- themes/atom-dark-syntax.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/atom-dark-syntax.less b/themes/atom-dark-syntax.less index 8a2eca64e..256260e09 100644 --- a/themes/atom-dark-syntax.less +++ b/themes/atom-dark-syntax.less @@ -24,7 +24,7 @@ } .selection .region { - background-color: #333333; + background-color: #444444; } .line-number.cursor-line-no-selection, From 214d73d812a0276ce14a928d99c430459a1e5dac Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Fri, 19 Jul 2013 13:57:08 -0700 Subject: [PATCH 2/2] Remove line highlight in dark syntax When moving around and selecting things, the entire line looks selected and is super confusing. This leaves the line number highlighted, but not the line itself. --- themes/atom-dark-syntax.less | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/themes/atom-dark-syntax.less b/themes/atom-dark-syntax.less index 256260e09..80d39e6d7 100644 --- a/themes/atom-dark-syntax.less +++ b/themes/atom-dark-syntax.less @@ -27,8 +27,7 @@ background-color: #444444; } - .line-number.cursor-line-no-selection, - .line.cursor-line { + .line-number.cursor-line-no-selection { background-color: rgba(255, 255, 255, 0.14); }