console.lua: sync colors after msg.c change

Keep ASS pallete the same, as it doesn't print trace messages anyway.
Remove only bold and keep debug gray.
This commit is contained in:
Kacper Michajłow 2024-09-13 21:26:25 +02:00
parent 4de6390d25
commit a6e13f41eb
1 changed files with 3 additions and 3 deletions

View File

@ -61,18 +61,18 @@ local styles = {
v = '{\\1c&H99cc99&}',
warn = '{\\1c&H66ccff&}',
error = '{\\1c&H7a77f2&}',
fatal = '{\\1c&H5791f9&\\b1}',
fatal = '{\\1c&H5791f9&}',
suggestion = '{\\1c&Hcc99cc&}',
selected_suggestion = '{\\1c&H2fbdfa&\\b1}',
disabled = '{\\1c&Hcccccc&}',
}
local terminal_styles = {
debug = '\027[1;30m',
debug = '\027[90m',
v = '\027[32m',
warn = '\027[33m',
error = '\027[31m',
fatal = '\027[1;31m',
fatal = '\027[91m',
selected_suggestion = '\027[7m',
disabled = '\027[38;5;8m',
}