Martín Lucas Golini
2026-04-24 00:15:39 -03:00
parent 0bb3f1157f
commit 7d2d4c0a3b

View File

@@ -47,7 +47,7 @@ static const auto BASE_UI_THEME = R"css(
--tab-font-inactive: line_number2;
/* Icons */
--icon: symbol;
--icon: normal;
--icon-active: type;
--icon-back-hover: selection;
--icon-line: line_number2;
@@ -171,6 +171,10 @@ std::string ColorSchemeTranslator::fromSyntaxColorScheme( const SyntaxColorSchem
output, "symbol",
colorScheme.getSyntaxStyle( SyntaxStyleTypes::Symbol ).color.toHexString( true ) );
String::replaceAll(
output, "normal",
colorScheme.getSyntaxStyle( SyntaxStyleTypes::Normal ).color.toHexString( true ) );
String::replaceAll(
output, "function",
colorScheme.getSyntaxStyle( SyntaxStyleTypes::Function ).color.toHexString( true ) );