Skip to content

Commit 9f3bdf2

Browse files
committed
fix: change the color of the function name inside runtime typechecking errors from blue to cyan to be easier to read inside dark terminals
1 parent b6c353c commit 9f3bdf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arkreactor/TypeChecker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ namespace Ark::types
112112
{
113113
fmt::dynamic_format_arg_store<fmt::format_context> store;
114114
if (colorize)
115-
store.push_back(fmt::styled(funcname, fmt::fg(fmt::color::blue)));
115+
store.push_back(fmt::styled(funcname, fmt::fg(fmt::color::cyan)));
116116
else
117117
store.push_back(funcname);
118118
fmt::vprint(os, "Function {} expected ", store);

0 commit comments

Comments
 (0)