//  DARK THEME  TOKENS: SEMANTIC KEYS COLORS
// - This partial defines Basic 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-dark-shadow-color: $colors-steel-950; // todo: fix, not part of Vibe colors
$theme-dark-shadow-opacity: 0.5;

$theme-dark-box-shadow-xs: $shadow-size-xs rgba($theme-dark-shadow-color, $theme-dark-shadow-opacity);
$theme-dark-box-shadow-small: $shadow-size-small rgba($theme-dark-shadow-color, $theme-dark-shadow-opacity);
$theme-dark-box-shadow-medium: $shadow-size-medium rgba($theme-dark-shadow-color, $theme-dark-shadow-opacity);
$theme-dark-box-shadow-large: $shadow-size-large rgba($theme-dark-shadow-color, $theme-dark-shadow-opacity);



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

// SURFACES COLORS
$theme-dark-surface-primary: $colors-steel-900;
$theme-dark-surface-primary-hover: rgba($colors-steel-900, 0.3);
$theme-dark-surface-secondary: $colors-steel-800;
$theme-dark-surface-tertiary: $colors-steel-700;
$theme-dark-surface-quaternary: $colors-steel-600;
$theme-dark-surface-selected: $colors-steel-900;
$theme-dark-surface-inverse: $colors-steel-100; // todo: fix, value from basic theme
$theme-dark-surface-success: $colors-green-800;
$theme-dark-surface-alert: $colors-red-800;
$theme-dark-surface-warning: $colors-yellow-800;

// BRAND COLORS
$theme-dark-primary-color: $primary-color;
$theme-dark-primary-hover-color: $primary-hover-color;
$theme-dark-primary-selected-hover-color: $color-deep_blue;
$theme-dark-primary-highlighted-color: $color-tyrian_blue;

// TEXT COLORS
$theme-dark-text-primary: $color-white;
$theme-dark-text-secondary: $colors-gray-400; // todo: fix, value from basic legacy palette
$theme-dark-text-tertiary: $colors-gray-700; // todo: fix, value from basic legacy palette
$theme-dark-text-color-on-primary: $text-color-on-primary; // todo: fix, value from basic theme
$theme-dark-text-color-on-inverted: $color-mud_black; // todo: fix, value from basic theme
$theme-dark-placeholder-color: $color-wolf_gray; // todo: fix, value from basic theme
$theme-dark-icon-primary: $color-wolf_gray; // todo: fix, value from basic theme
$theme-dark-link-color: $colors-steel-300;


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

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

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


