X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/6094c4b7d0a03fc92693bee5ad34b828979d1af5..773dfc2f99384cf6597a9e7a6156e0e594c95462:/ranger/colorschemes/custom.py?ds=sidebyside diff --git a/ranger/colorschemes/custom.py b/ranger/colorschemes/custom.py new file mode 100644 index 0000000..df34816 --- /dev/null +++ b/ranger/colorschemes/custom.py @@ -0,0 +1,15 @@ +# Copyright (C) 2009-2013 Roman Zimbelmann +# 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): + def use(self, context): + fg, bg, attr = Default.use(self, context) + + if context.in_browser: + if context.border: + fg = 237 + + return fg, bg, attr