1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:47:45 +00:00

Everywhere: Move Base/res/terminal-colors to Base/res/color-schemes

This commit is contained in:
implicitfield 2022-12-02 18:11:26 +02:00 committed by Andrew Kaster
parent 534f3faa2f
commit 4aec8491d6
19 changed files with 6 additions and 5 deletions

View file

@ -42,7 +42,7 @@ static ErrorOr<Vector<Color>> get_color_scheme_from_string(StringView name)
"White"sv
};
auto const path = DeprecatedString::formatted("/res/terminal-colors/{}.ini", name);
auto const path = DeprecatedString::formatted("/res/color-schemes/{}.ini", name);
auto color_config_or_error = Core::ConfigFile::open(path);
if (color_config_or_error.is_error()) {
return Error::from_string_view(DeprecatedString::formatted("Unable to read color scheme file '{}': {}", path, color_config_or_error.error()));