mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
14 lines
251 B
Python
14 lines
251 B
Python
|
#!/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]
|
||
|
]
|
||
|
)
|
||
|
)
|