# Copyright (C) 2009, 2010 Roman Zimbelmann # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ The default colorscheme, using 88 colors. For now, just map each of the 8 base colors to new ones for brighter blue, etc. and do some minor modifications. """ from ranger.gui.color import * from ranger.colorschemes.default import Default import curses class Scheme(Default): def use(self, context): fg, bg, attr = Default.use(self, context) if curses.COLORS < 88: return fg, bg, attr try: translate = { blue: 22, yellow: 72, green: 20, cyan: 21, white: 79, red: 32, magenta: magenta, } fg = translate[fg] except KeyError: pass if context.in_browser: if context.main_column and context.marked: if context.selected: fg = 77 else: fg = 68 attr |= reverse return fg, bg, attr