Fixed #25439 -- Added `SUCCESS` style to termcolor palettes
This commit is contained in:
parent
af95eee9fb
commit
f06ce6053c
|
@ -76,6 +76,7 @@ LIGHT_PALETTE = 'light'
|
||||||
PALETTES = {
|
PALETTES = {
|
||||||
NOCOLOR_PALETTE: {
|
NOCOLOR_PALETTE: {
|
||||||
'ERROR': {},
|
'ERROR': {},
|
||||||
|
'SUCCESS': {},
|
||||||
'WARNING': {},
|
'WARNING': {},
|
||||||
'NOTICE': {},
|
'NOTICE': {},
|
||||||
'SQL_FIELD': {},
|
'SQL_FIELD': {},
|
||||||
|
@ -96,6 +97,7 @@ PALETTES = {
|
||||||
},
|
},
|
||||||
DARK_PALETTE: {
|
DARK_PALETTE: {
|
||||||
'ERROR': {'fg': 'red', 'opts': ('bold',)},
|
'ERROR': {'fg': 'red', 'opts': ('bold',)},
|
||||||
|
'SUCCESS': {'fg': 'green', 'opts': ('bold',)},
|
||||||
'WARNING': {'fg': 'yellow', 'opts': ('bold',)},
|
'WARNING': {'fg': 'yellow', 'opts': ('bold',)},
|
||||||
'NOTICE': {'fg': 'red'},
|
'NOTICE': {'fg': 'red'},
|
||||||
'SQL_FIELD': {'fg': 'green', 'opts': ('bold',)},
|
'SQL_FIELD': {'fg': 'green', 'opts': ('bold',)},
|
||||||
|
@ -116,6 +118,7 @@ PALETTES = {
|
||||||
},
|
},
|
||||||
LIGHT_PALETTE: {
|
LIGHT_PALETTE: {
|
||||||
'ERROR': {'fg': 'red', 'opts': ('bold',)},
|
'ERROR': {'fg': 'red', 'opts': ('bold',)},
|
||||||
|
'SUCCESS': {'fg': 'green', 'opts': ('bold',)},
|
||||||
'WARNING': {'fg': 'yellow', 'opts': ('bold',)},
|
'WARNING': {'fg': 'yellow', 'opts': ('bold',)},
|
||||||
'NOTICE': {'fg': 'red'},
|
'NOTICE': {'fg': 'red'},
|
||||||
'SQL_FIELD': {'fg': 'green', 'opts': ('bold',)},
|
'SQL_FIELD': {'fg': 'green', 'opts': ('bold',)},
|
||||||
|
|
Loading…
Reference in New Issue