mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
18 lines
440 B
Python
Executable file
18 lines
440 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import _theme as theme
|
|
|
|
# default setvtrgb config:
|
|
# 0,170,0,170,0,170,0,170,85,255,85,255,85,255,85,255
|
|
# 0,0,170,85,0,0,170,170,85,85,255,255,85,85,255,255
|
|
# 0,0,0,0,170,170,170,170,85,85,85,85,255,255,255,255
|
|
|
|
for i in range(3):
|
|
print(
|
|
",".join(
|
|
[
|
|
str(int(color[2 * i + 1 : 2 * i + 3], 16))
|
|
for color in theme.ansi_colors[:16]
|
|
]
|
|
)
|
|
)
|