2019-08-26 11:54:06 +00:00
|
|
|
#!/usr/bin/env python3
|
2019-08-24 16:05:09 +00:00
|
|
|
|
|
|
|
import _theme as theme
|
|
|
|
|
2019-08-26 11:54:06 +00:00
|
|
|
|
|
|
|
def print_color(key_name, color):
|
|
|
|
print("{} {}".format(key_name, color))
|
|
|
|
|
|
|
|
|
2019-08-30 18:53:16 +00:00
|
|
|
print_color("background", theme.bg)
|
|
|
|
print_color("foreground", theme.fg)
|
|
|
|
print_color("cursor", theme.cursor_bg)
|
|
|
|
print_color("cursor_text_color", theme.cursor_fg)
|
|
|
|
print_color("selection_background", theme.selection_bg)
|
|
|
|
print_color("selection_foreground", theme.selection_fg)
|
2019-09-14 19:39:13 +00:00
|
|
|
for index, color in enumerate(theme.ansi_colors[:16]):
|
2019-08-30 18:53:16 +00:00
|
|
|
print_color("color" + str(index), color)
|
|
|
|
print_color("url_color", theme.link_color)
|
|
|
|
print_color("active_border_color", theme.ansi_colors[2])
|
|
|
|
print_color("inactive_border_color", theme.ansi_colors[8])
|
|
|
|
print_color("bell_border_color", theme.ansi_colors[1])
|