////
///
/// Character Weight Configuration
/// ===========================================================================
///
/// Configuration for font-weight character variants.
///
/// @group Typography.Character.Variants.Weight
/// @author Scape Press
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

@use "sass:map";

// ============================================================================
// Configuration
// ============================================================================

$ss-character-weight-config: (
    thin: var(--ss-font-weight-thin),
    extralight: var(--ss-font-weight-extralight),
    light: var(--ss-font-weight-light),
    normal: var(--ss-font-weight-normal),
    medium: var(--ss-font-weight-medium),
    semibold: var(--ss-font-weight-semibold),
    bold: var(--ss-font-weight-bold),
    extrabold: var(--ss-font-weight-extrabold),
    black: var(--ss-font-weight-black),
) !default;

// ////
// /// Character Variant — Weight
// /// Configuration
// /// @layer ss.typography
// ////

// $ss-character-weight-config: (
//   strong: var(--ss-font-weight-bold),
//   semibold: var(--ss-font-weight-semibold),
//   medium: var(--ss-font-weight-medium)
// ) !default;
