about 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.py48
1 files changed, 24 insertions, 24 deletions
diff --git a/ranger/colorschemes/snow.py b/ranger/colorschemes/snow.py
index 50a41b58..e3b433b6 100644
--- a/ranger/colorschemes/snow.py
+++ b/ranger/colorschemes/snow.py
@@ -5,34 +5,34 @@ from ranger.gui.colorscheme import ColorScheme
 from ranger.gui.color import *
 
 class Snow(ColorScheme):
-	def use(self, context):
-		fg, bg, attr = default_colors
+    def use(self, context):
+        fg, bg, attr = default_colors
 
-		if context.reset:
-			pass
+        if context.reset:
+            pass
 
-		elif context.in_browser:
-			if context.selected:
-				attr = reverse
-			if context.directory:
-				attr |= bold
+        elif context.in_browser:
+            if context.selected:
+                attr = reverse
+            if context.directory:
+                attr |= bold
 
-		elif context.highlight:
-			attr |= reverse
+        elif context.highlight:
+            attr |= reverse
 
-		elif context.in_titlebar and context.tab and context.good:
-			attr |= reverse
+        elif context.in_titlebar and context.tab and context.good:
+            attr |= reverse
 
-		elif context.in_statusbar:
-			if context.loaded:
-				attr |= reverse
-			if context.marked:
-				attr |= reverse
+        elif context.in_statusbar:
+            if context.loaded:
+                attr |= reverse
+            if context.marked:
+                attr |= reverse
 
-		elif context.in_taskview:
-			if context.selected:
-				attr |= bold
-			if context.loaded:
-				attr |= reverse
+        elif context.in_taskview:
+            if context.selected:
+                attr |= bold
+            if context.loaded:
+                attr |= reverse
 
-		return fg, bg, attr
+        return fg, bg, attr