skel/.config/ranger/colorschemes/jungle.py

19 lines
575 B
Python

# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lavabit.com>
# This software is distributed under the terms of the GNU GPL version 3.
from ranger.gui.color import *
from ranger.colorschemes.default import Default
class Scheme(Default):
progress_bar_color = green
def use(self, context):
fg, bg, attr = Default.use(self, context)
if context.directory and not context.marked and not context.link:
fg = green
if context.in_titlebar and context.hostname:
fg = red if context.bad else blue
return fg, bg, attr