Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Public reusable surface strength scale used by controls that consume the shared MAS surface material system.
    ''' It intentionally lives outside PanelShell so standalone controls can tune material surface and border weight
    ''' without leaking dialog/container implementation concepts into their API.
    ''' </summary>
    Public Enum MASSurfaceStrength
        ThemeDefault = 0
        Level1 = 1
        Level2 = 2
        Level3 = 3
        Level4 = 4
        Level5 = 5
        Level6 = 6
    End Enum

End Namespace
