Removed standard colors 0-15 for portability. Removed pygments dep. Fixed setup.py
This commit is contained in:
parent
76579920ef
commit
5e763123f8
11 changed files with 109 additions and 117 deletions
23
colorcube.py
Executable file
23
colorcube.py
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import os, sys, argparse, os.path, json
|
||||
|
||||
# Display an xterm-256color color palette on the terminal, including color ids
|
||||
|
||||
reset_sequence = '\033[39;49m'
|
||||
|
||||
def esc(i):
|
||||
return '\033[48;5;'+str(i)+'m'
|
||||
|
||||
print(''.join([str(i).ljust(4) for i in range(16)]))
|
||||
print(' '.join([esc(i) for i in range(16)])+' ' + reset_sequence)
|
||||
|
||||
for j in range(6):
|
||||
for k in range(6):
|
||||
c = 16+j*6+k*6*6
|
||||
print(''.join([str(c+i).ljust(4) for i in range(6)]))
|
||||
print(' '.join([esc(c+i) for i in range(6)])+' ' + reset_sequence)
|
||||
|
||||
print(''.join([str(i).ljust(4) for i in range(16+6*6*6, 16+6*6*6+24)]))
|
||||
print(' '.join([esc(i) for i in range(16+6*6*6, 16+6*6*6+24)])+' ' + reset_sequence)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue