@use 'color-vars' as *;

/* DEPRECATED: This file should be removed after migrating all 572 usages to the Tag component.
 * Migration pending - Codex launch requirement.
 * Search codebase for "class.*label" to find instances.
 */

//** Default label background color
$label-background-default:                              $gray-80;
//** Primary label background color
// TODO: remove the fix after updating the branding feature with the new shades of the primary color
// $label-background-primary:                              $brand-80;
// $label-color-primary:                                   $brand-20;
$label-background-primary:                              var(--brand-primary, var(--c8y-brand-primary));
$label-color-primary:                                   $palette-high;

//** Success label background color
$label-background-success:                              $status-success-light;
$label-color-success:                                   $status-success-dark;
//** Info label background color
$label-background-info:                                 $status-info-light;
$label-color-info:                                      $status-info-dark;
//** Warning label background color
$label-background-warning:                              $status-warning-light;
$label-color-warning:                                   $status-warning-dark;
//** Danger label background color
$label-background-danger:                               $status-danger-light;
$label-color-danger:                                    $status-danger-dark;

//** Default label text color
$label-color-light:                                     $palette-high;
//** Default label text color
$label-color-dark:                                      $text-color;
//** Default text color of a linked label
$label-link-hover-color:                                $palette-high;


