Last active
May 4, 2017 19:48
-
-
Save actionless/d726042bfa407de023e91a896584dbe9 to your computer and use it in GitHub Desktop.
terminal.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
def text_to_int(text): | |
return int("0x{}".format(text), 0) | |
def int_to_text(myint): | |
return "{0:02x}".format(int(myint)) | |
def color_list_from_text(color_text): | |
return [color_text[:2], color_text[2:4], color_text[4:]] | |
def is_dark(color_text): | |
return sum([ | |
text_to_int(channel_text) | |
for channel_text in color_list_from_text(color_text) | |
]) < 384 | |
class ColorDiff(object): | |
r = None | |
g = None | |
b = None | |
@property | |
def list(self): | |
return [self.r, self.g, self.b] | |
@property | |
def abs_list(self): | |
return [abs(c) for c in self.list] | |
@property | |
def min(self): | |
return min(self.abs_list) | |
@property | |
def abs(self): | |
return sum(self.abs_list) | |
@property | |
def minabs(self): | |
return self.min + self.abs | |
@property | |
def avg(self): | |
return self.abs / 3 | |
def __repr__(self): | |
return str(self.abs) | |
channels = ['r', 'g', 'b'] | |
def __init__(self, theme_color_1, theme_color_2): | |
color_list_1 = color_list_from_text(theme_color_1) | |
color_list_2 = color_list_from_text(theme_color_2) | |
for channel_index, channel_1_text in enumerate(color_list_1): | |
channel_1 = text_to_int(channel_1_text) | |
channel_2 = text_to_int(color_list_2[channel_index]) | |
setattr(self, self.channels[channel_index], channel_1-channel_2) | |
def apply_to(self, color_text): | |
color_list = color_list_from_text(color_text) | |
result = '' | |
for channel_index, channel_text in enumerate(color_list): | |
channel = text_to_int(channel_text) | |
int_result = channel - getattr(self, self.channels[channel_index]) | |
if int_result < 0: | |
int_result = 0 | |
if int_result > 255: | |
int_result = 255 | |
result += int_to_text(int_result) | |
return result | |
def find_closest_color(color_hex, colors_hex, highlight=True): | |
smallest_diff = ColorDiff("000000", "ffffff") | |
smallest_key = None | |
highlight_keys = ["color{}".format(i) for i in range(8, 15+1)] | |
for preset_key, preset_color in colors_hex.items(): | |
if ( | |
highlight | |
) and ( | |
"color" not in preset_key | |
) or ( | |
preset_key not in highlight_keys | |
): | |
continue | |
diff = ColorDiff(preset_color, color_hex) | |
# if diff.minabs < smallest_diff.minabs: | |
if diff.abs < smallest_diff.abs: | |
smallest_diff = diff | |
smallest_key = preset_key | |
return smallest_key, smallest_diff | |
valid_color_chars = [ | |
chr(i) for i in range(ord('a'), ord('f')+1) | |
] + [ | |
str(i) for i in range(10) | |
] | |
def import_xcolors(path): | |
hex_colors = {} | |
with open(os.path.expanduser(path)) as f: | |
for line in f.read().split('\n'): | |
if line.strip().startswith('!'): | |
continue | |
pair = list([s.strip() for s in line.split(':')]) | |
if len(pair) < 2: | |
continue | |
key, value = pair | |
key = key.replace('*', '') | |
value = value.replace('#', '').lower() | |
for char in value: | |
if char not in valid_color_chars: | |
break | |
else: | |
hex_colors[key] = value | |
return hex_colors | |
def generate_theme( | |
template_path, theme_color, theme_bg, theme_fg, | |
theme_hint=None, auto_swap_colors=True | |
): | |
hex_colors = import_xcolors(template_path) | |
if auto_swap_colors and ( | |
is_dark(theme_bg) != is_dark(hex_colors['background']) | |
): | |
theme_bg, theme_fg = theme_fg, theme_bg | |
closest_key, diff = None, None | |
if theme_hint: | |
closest_key = theme_hint | |
diff = ColorDiff(hex_colors[theme_hint], theme_color) | |
else: | |
closest_key, diff = find_closest_color( | |
theme_color, hex_colors, highlight=False | |
) | |
modified_colors = { | |
key: diff.apply_to(value) | |
for key, value in hex_colors.items() | |
} | |
modified_colors["background"] = theme_bg | |
modified_colors["foreground"] = theme_fg | |
for source, destinations in { | |
"background": ("color0", "color8",), | |
"foreground": ("color7", "color15",), | |
}.items(): | |
for key in destinations: | |
modified_colors[key] = ColorDiff( | |
hex_colors[source], hex_colors[key] | |
).apply_to( | |
modified_colors[source] | |
) | |
for key in sorted(modified_colors.keys()): | |
print("*{key}: #{value}".format( | |
key=key, value=modified_colors[key] | |
)) | |
if __name__ == '__main__': | |
args = sys.argv | |
if len(args) < 5: | |
print( | |
"Usage: {} " | |
"TEMPLATE_PATH ACCENT_COLOR BG FG " | |
"[ACCENT_KEY_NAME] [AUTO_DETECT_FG_BG=YES]".format( | |
sys.argv[0] | |
) | |
) | |
sys.exit(1) | |
template_path = args[1] | |
theme_color = args[2] | |
theme_bg = args[3] | |
theme_fg = args[4] | |
theme_hint = args[5] if len(args) > 5 else None | |
swap_colors = (args[6] not in ["y", "yes", "true", "1"]) \ | |
if len(args) > 6 else None | |
generate_theme( | |
template_path, theme_color, theme_bg, theme_fg, theme_hint, swap_colors | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment