mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-28 21:54:14 -04:00
fix: Add missing colors to dict
This commit is contained in:
parent
e1973ae381
commit
42a549833b
1 changed files with 2 additions and 0 deletions
|
@ -143,12 +143,14 @@ ANSI = {k: '' for k in DEFAULT_CLI_COLORS.keys()}
|
||||||
|
|
||||||
COLOR_DICT = {
|
COLOR_DICT = {
|
||||||
'00': [(0, 0, 0), (0, 0, 0)],
|
'00': [(0, 0, 0), (0, 0, 0)],
|
||||||
|
'30': [(0, 0, 0), (0, 0, 0)],
|
||||||
'31': [(255, 0, 0), (128, 0, 0)],
|
'31': [(255, 0, 0), (128, 0, 0)],
|
||||||
'32': [(0, 200, 0), (0, 128, 0)],
|
'32': [(0, 200, 0), (0, 128, 0)],
|
||||||
'33': [(255, 255, 0), (128, 128, 0)],
|
'33': [(255, 255, 0), (128, 128, 0)],
|
||||||
'34': [(0, 0, 255), (0, 0, 128)],
|
'34': [(0, 0, 255), (0, 0, 128)],
|
||||||
'35': [(255, 0, 255), (128, 0, 128)],
|
'35': [(255, 0, 255), (128, 0, 128)],
|
||||||
'36': [(0, 255, 255), (0, 128, 128)],
|
'36': [(0, 255, 255), (0, 128, 128)],
|
||||||
|
'37': [(255, 255, 255), (255, 255, 255)],
|
||||||
}
|
}
|
||||||
|
|
||||||
STATICFILE_EXTENSIONS = {
|
STATICFILE_EXTENSIONS = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue