summary refs log tree commit diff stats
path: root/ranger/colorschemes/snow.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/colorschemes/snow.py')
-rw-r--r--ranger/colorschemes/snow.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/ranger/colorschemes/snow.py b/ranger/colorschemes/snow.py
index baad5e43..8e7da043 100644
--- a/ranger/colorschemes/snow.py
+++ b/ranger/colorschemes/snow.py
@@ -14,44 +14,7 @@ class Snow(ColorScheme):
 			else:
 				attr = normal
 
-			if context.empty or context.error:
-				bg = red
-
-			if context.media:
-				if context.image:
-					fg = yellow
-				else:
-					fg = magenta
-
-			if context.container:
-				fg = red
-
-			if context.document:
-				fg = default
-
 			if context.directory:
-				fg = blue
-
-			elif context.executable and not any((context.media, context.container, context.document)):
-				attr |= bold
-				fg = green
-
-			if context.link:
-				fg = cyan
-
-			if context.maindisplay and context.selected:
 				attr |= bold
 
-		elif context.in_titlebar:
-			attr |= bold
-
-			if context.hostname:
-				fg = green
-
-			elif context.directory:
-				fg = blue
-
-			elif context.link:
-				fg = cyan
-
 		return fg, bg, attr