fix(theming): properly apply warning style to update output

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
pull/45980/head
Richard Steinmetz 2024-06-19 15:44:21 +07:00
parent 42fa007204
commit 9c930146a5
No known key found for this signature in database
GPG Key ID: 27137D9E7D273FB2
1 changed files with 2 additions and 2 deletions

@ -111,9 +111,9 @@ class UpdateConfig extends Command {
$value = $this->imageManager->updateImage($key, $value);
$key = $key . 'Mime';
}
if ($key === 'color') {
$output->writeln('<warning>Using "color" is depreacted, use "primary_color" instead');
$output->writeln('<comment>Using "color" is deprecated, use "primary_color" instead</comment>');
$key = 'primary_color';
}