From 7c105a0446eb924d0f591bca2f52f5fb06ecddce Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 25 May 2012 12:46:27 -0700 Subject: [PATCH] Tweak fold line colors The deselected orange is now a darkened version of the orange used for coffeescript arrows in the twilight theme. The selected color is now a green based on the color of the cursor, to lend a feeling of similarity between the fold line and the cursor. --- static/theme/twilight.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/theme/twilight.css b/static/theme/twilight.css index 97ceea195..ddd2d0e5e 100644 --- a/static/theme/twilight.css +++ b/static/theme/twilight.css @@ -70,12 +70,12 @@ color:#D2A8A1; } .fold { - background-color: #52412C; + background-color: #524228; color: #969696; } .fold.selected { - background-color: #82715C; + background-color: #2A3B2A; color: #969696; }