mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-13 05:30:16 +01:00
This matches the sections from the shell prints, which are quite nice. Signed-off-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31602>
15 lines
427 B
Python
15 lines
427 B
Python
CONSOLE_LOG = {
|
|
"FG_GREEN": "\x1b[0;32m",
|
|
"FG_BOLD_GREEN": "\x1b[0;1;32m",
|
|
"FG_RED": "\x1b[0;38;5;197m",
|
|
"FG_BOLD_RED": "\x1b[0;1;38;5;197m",
|
|
"FG_YELLOW": "\x1b[0;33m",
|
|
"FG_BOLD_YELLOW": "\x1b[0;1;33m",
|
|
"FG_MAGENTA": "\x1b[0;35m",
|
|
"FG_BOLD_MAGENTA": "\x1b[0;1;35m",
|
|
"FG_CYAN": "\x1b[0;36m",
|
|
"RESET": "\x1b[0m",
|
|
"UNDERLINED": "\x1b[3m",
|
|
"BOLD": "\x1b[1m",
|
|
"DIM": "\x1b[2m",
|
|
}
|