mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
20 lines
380 B
Python
Executable file
20 lines
380 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import _theme as theme
|
|
|
|
|
|
for attr in [
|
|
"bg",
|
|
"fg",
|
|
"cursor_bg",
|
|
"cursor_fg",
|
|
"selection_bg",
|
|
"selection_fg",
|
|
"link_color",
|
|
]:
|
|
color = getattr(theme, attr)
|
|
print("colorscheme_{}={}".format(attr, color[1:]))
|
|
print("colorscheme_ansi_colors=(")
|
|
for color in theme.ansi_colors:
|
|
print(" {}".format(color[1:]))
|
|
print(")")
|