summary refs log tree commit diff stats
path: root/ranger/colorschemes/texas.py
blob: 26e8916db4c72c9a9473ac1ec2ad927add64db06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# 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 <http://www.gnu.org/licenses/>.

"""
Some experimental colorscheme.
"""

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

		dircolor = 77
		dircolor_selected = {True: 79, False: 78}
		linkcolor = {True: 21, False: 48}

		if context.in_browser:
			if context.media:
				if context.image:
					fg = 20
				elif context.video:
					fg = 22
				elif context.audio:
					fg = 23

			if context.container:
				fg = 32
			if context.directory:
				fg = dircolor
				if context.selected:
					fg = dircolor_selected[context.main_column]
			elif context.executable and not \
					any((context.media, context.container)):
				fg = 82
			if context.link:
				fg = linkcolor[context.good]

			if context.main_column:
				if context.selected:
					attr |= bold
				if context.marked:
					attr |= bold
					fg = 53

		if context.in_titlebar:
			if context.hostname:
				fg = context.bad and 48 or 82
			elif context.directory:
				fg = dircolor
			elif context.link:
				fg = linkcolor[True]

		return fg, bg, attr