src/Config/Tokens.ps1

# Tokens — Constantes de diseño extraídas de new-design/repo-nav/styles/tokens.css
# Spacing, font sizes, radii, glyphs. Los colores viven en Themes.ps1.

$global:RNTokens = @{

    Spacing = @{
        s1  = 1
        s2  = 2
        s3  = 3
        s4  = 4
        s5  = 5
        s6  = 6
        s8  = 8
    }

    # Glyphs reutilizables (Unicode)
    Glyph = @{
        BulletDot       = '●'
        BulletRing      = '○'
        Diamond         = '◆'
        DiamondSmall    = '·'
        Star            = '★'
        Branch          = '⎇'
        Bolt            = '⚡'
        Rocket          = '🚀'
        Compare         = '⇄'
        CherryPick      = '⎈'
        Graph           = '⊹'
        ArrowUp         = '▲'
        ArrowDown       = '▼'
        ArrowRight      = '▶'
        Check           = '✓'
        Cross           = '×'
        Folder          = '⌂'
        SeparatorPipe   = '│'
        SeparatorSlash  = '›'
        TabIcon         = '⎈'
        Cursor          = '▌'
    }

    # Box-drawing para frames (subset estable Unicode)
    Box = @{
        TopLeft     = '┌'
        TopRight    = '┐'
        BottomLeft  = '└'
        BottomRight = '┘'
        Horizontal  = '─'
        Vertical    = '│'
        TLight      = '┴'
        TRight      = '├'
        TLeft       = '┤'
        TDown       = '┬'
        Cross       = '┼'
        # Heavy
        HTopLeft    = '┏'
        HTopRight   = '┓'
        HBottomLeft = '┗'
        HBottomRight= '┛'
        HHorizontal = '━'
        HVertical   = '┃'
    }

    # Status bar / repo row defaults
    Layout = @{
        StatusBarHeight = 1
        TitleBarHeight  = 1
        TabsHeight      = 2
        SearchBarHeight = 3
        MinAppWidth     = 100
        MinAppHeight    = 28
    }
}