//  BLACK THEME  TOKENS: SEMANTIC KEYS COLORS
// - This partial defines Black Theme's Semantic Keys color tokens

// - Theme keys should hold registration values (colors, content colors, other keys)
//   - In some case there are unique hex values assignments
//   - They should be transformed into Registration colors.
//     - We add some annotation to their scope when found.
// - When several key has the same value and have a connection
// - We either use $theme-dark token or var(--token) depending on connection logic and value type.

// SHADOWS
$theme-black-box-shadow-color: $color-black;

$theme-black-box-shadow-xs: $shadow-size-xs $theme-black-box-shadow-color;
$theme-black-box-shadow-small: $shadow-size-small $theme-black-box-shadow-color;
$theme-black-box-shadow-medium: $shadow-size-medium $theme-black-box-shadow-color;
$theme-black-box-shadow-large: $shadow-size-large $theme-black-box-shadow-color;


// Fixed colors - Mostly Monochrome Values
$theme-black-fixed-light-color: $color-white;
$theme-black-fixed-dark-color: $color-black;

// SURFACES COLORS
$theme-black-surface-primary: $colors-gray-900;
$theme-black-surface-primary-hover: rgba($colors-gray-900, 0.3);
$theme-black-surface-secondary: $colors-gray-800;
$theme-black-surface-tertiary: $colors-gray-700;
$theme-black-surface-quaternary: $colors-gray-600;
$theme-black-surface-selected: $colors-steel-900;
$theme-black-surface-inverse: $color-white;
$theme-black-surface-success: $colors-green-800;
$theme-black-surface-alert: $colors-red-800;
$theme-black-surface-warning: $colors-yellow-800;

// BRAND
$theme-black-primary-color: $primary-color;
$theme-black-primary-hover-color: $primary-hover-color;
$theme-black-primary-selected-hover-color: $color-deep_blue;
$theme-black-primary-highlighted-color: $color-downriver;

// TEXT COLORS
$theme-black-text-primary: $color-white;
$theme-black-text-secondary: $colors-gray-400;
$theme-black-text-tertiary: $colors-gray-700;
$theme-black-text-color-on-primary: $text-color-on-primary;
$theme-black-text-color-on-inverted: $color-vanta;
$theme-black-placeholder-color: $color-mouse;
$theme-black-icon-primary: $color-mouse;
$theme-black-link-color: $colors-steel-300;


// System Semantics (state, status)
$theme-black-disabled-text-color: rgba($theme-black-text-primary, var(--disabled-component-opacity));
$theme-black-disabled-background-color: $color-dust-muted;

$theme-black-positive-color: $colors-green-700;
$theme-black-positive-color-hover: $colors-green-600;
$theme-black-positive-color-selected: $colors-green-600;
$theme-black-positive-color-selected-hover: $colors-green-500;
$theme-black-positive-color-background: $colors-green-700;
$theme-black-negative-color: $colors-red-700;
$theme-black-negative-color-hover: $colors-red-600;
$theme-black-negative-color-selected: $colors-red-600;
$theme-black-negative-color-selected-hover: $colors-red-500;
$theme-black-negative-color-background: $colors-red-700;
$theme-black-warning-color: $colors-yellow-700;
$theme-black-warning-color-hover: $colors-yellow-600;
$theme-black-warning-color-selected: $colors-yellow-600;
$theme-black-warning-color-selected-hover: $colors-yellow-500;
$theme-black-warning-color-background: $colors-yellow-700;

// DIVIDER COLORS
$theme-black-divider-primary: $colors-gray-700;
$theme-black-divider-secondary: $colors-gray-600;
$theme-black-divider-overlay: rgba($theme-black-box-shadow-color, $shadow-xs-opacity); 
$theme-black-divider-halo: $colors-steel-600; 
$theme-black-divider-selected: $colors-steel-300; 

