inital commit
This commit is contained in:
44
.config/ranger/colorschemes/snow.py
Normal file
44
.config/ranger/colorschemes/snow.py
Normal file
@ -0,0 +1,44 @@
|
||||
# This file is part of ranger, the console file manager.
|
||||
# License: GNU GPL version 3, see the file "AUTHORS" for details.
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
|
||||
from ranger.gui.colorscheme import ColorScheme
|
||||
from ranger.gui.color import default_colors, reverse, bold, BRIGHT
|
||||
|
||||
|
||||
class Snow(ColorScheme):
|
||||
|
||||
def use(self, context):
|
||||
fg, bg, attr = default_colors
|
||||
|
||||
if context.reset:
|
||||
pass
|
||||
|
||||
elif context.in_browser:
|
||||
if context.selected:
|
||||
attr = reverse
|
||||
if context.directory:
|
||||
attr |= bold
|
||||
fg += BRIGHT
|
||||
|
||||
elif context.highlight:
|
||||
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_taskview:
|
||||
if context.selected:
|
||||
attr |= bold
|
||||
fg += BRIGHT
|
||||
if context.loaded:
|
||||
attr |= reverse
|
||||
|
||||
return fg, bg, attr
|
Reference in New Issue
Block a user