summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-03-11 20:52:31 +0100
committerhut <hut@lavabit.com>2010-03-12 00:46:47 +0100
commita0fdb913401a6f28b1dfbca248d41c147b12cd20 (patch)
tree76d9cb487a46b8d20e87ddfcd57c0ca3250a9ebc /doc
parent0128bee71f734138d3f49f56092688bb0623c6a2 (diff)
downloadranger-a0fdb913401a6f28b1dfbca248d41c147b12cd20.tar.gz
added two new colorschemes using 88 colors
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/print_colors.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/print_colors.py b/doc/print_colors.py
new file mode 100755
index 00000000..7ffd6500
--- /dev/null
+++ b/doc/print_colors.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+"""
+You can use this tool to display all supported colors and their color number.
+It will exit after a keypress.
+"""
+
+import curses
+from curses import *
+
+@wrapper
+def main(win):
+	def print_all_colors(attr):
+		for c in range(0, curses.COLORS):
+			init_pair(c, c, -1)
+			win.addstr(str(c) + ' ', color_pair(c) | attr)
+	use_default_colors()
+	win.addstr("available colors: %d\n\n" % curses.COLORS)
+	print_all_colors(0)
+	win.addstr("\n\n")
+	print_all_colors(A_BOLD)
+	win.refresh()
+	win.getch()
+