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