From 5fc03324bb1c4effbb5568b96d1bf57f9483ebda Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 20 Feb 2022 15:23:01 +0100 Subject: Update current config --- colorschemes/eupho.py | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 colorschemes/eupho.py (limited to 'colorschemes/eupho.py') diff --git a/colorschemes/eupho.py b/colorschemes/eupho.py new file mode 100644 index 0000000..a29a0b9 --- /dev/null +++ b/colorschemes/eupho.py @@ -0,0 +1,107 @@ +from ranger.gui.colorscheme import ColorScheme +from ranger.gui.color import * + +class Default(ColorScheme): + def use(self, context): + fg, bg, attr = default_colors + + if context.reset: + return default_colors + + elif context.in_browser: + if context.selected: + fg = white + attr = bold + else: + attr = normal + if context.empty or context.error: + fg = black + if context.border: + attr = normal + fg = default + if context.media: + if context.image: + fg = red + else: + fg = yellow + if context.container: + attr |= normal + fg = green + if context.directory: + attr |= normal + fg = magenta + elif context.executable and not \ + any((context.media, context.container, + context.fifo, context.socket)): + attr |= bold + fg = red + if context.socket: + fg = black + if context.fifo or context.device: + fg = blue + if context.device: + attr |= bold + if context.link: + fg = context.good and white or red + if context.tag_marker and not context.selected: + attr |= bold + if fg in (red, white): + fg = black + else: + fg = green + if not context.selected and (context.cut or context.copied): + fg = black + attr |= bold + if context.main_column: + if context.selected: + attr |= reverse + if context.marked: + attr |= underline + fg = white + if context.badinfo: + if attr & reverse: + bg = red + else: + fg = red + + elif context.in_titlebar: + attr |= normal + if context.hostname: + attr |= normal + fg = red + elif context.directory: + fg = red + elif context.tab: + if context.good: + bg = white + elif context.link: + fg = green + + elif context.in_statusbar: + if context.permissions: + if context.good: + fg = white + elif context.bad: + fg = red + if context.marked: + attr |= bold | reverse + fg = yellow + if context.message: + if context.bad: + attr |= bold + fg = red + + if context.text: + if context.highlight: + attr |= bold + + if context.in_taskview: + if context.title: + fg = red + + if context.selected: + attr |= normal + + return fg, bg, attr + + -- cgit v1.2.3