more readable macro colors

This commit is contained in:
rhpidfyre 2024-12-29 23:16:36 -05:00
parent 7a4fa8c13c
commit 8b9302cb21

View File

@ -21,10 +21,12 @@ pub trait TerminalColors {
impl TerminalColors for Vm { impl TerminalColors for Vm {
fn var_terminal_colors(&self, colors_table: &Table) -> lResult<()> { fn var_terminal_colors(&self, colors_table: &Table) -> lResult<()> {
term_colors_luau!(self, colors_table, term_colors_luau!(self, colors_table,
grey black dark_grey red dark_grey dark_red dark_green dark_cyan
dark_red green dark_green yellow dark_yellow dark_magenta dark_blue
dark_yellow blue dark_blue magenta red grey black
dark_magenta cyan dark_cyan white green yellow
blue magenta
cyan white
); );
Ok(()) Ok(())
} }