]> git.rmz.io Git - dotfiles.git/blob - ranger/colorschemes/custom.py
mutt: towards multi account support
[dotfiles.git] / ranger / colorschemes / custom.py
1 # Copyright (C) 2009-2013 Roman Zimbelmann <hut@lavabit.com>
2 # This software is distributed under the terms of the GNU GPL version 3.
3
4 from ranger.gui.color import *
5 from ranger.colorschemes.default import Default
6
7 class Scheme(Default):
8 def use(self, context):
9 fg, bg, attr = Default.use(self, context)
10
11 if context.in_browser:
12 if context.border:
13 fg = 237
14
15 return fg, bg, attr