Option Strict On
Option Explicit On

Imports SkiaSharp

Namespace Nexamas.UI.Rendering

    Friend NotInheritable Class MASSurfaceMaterialPalette

        Friend ReadOnly Top As SKColor
        Friend ReadOnly Mid As SKColor
        Friend ReadOnly Bottom As SKColor
        Friend ReadOnly Accent As SKColor
        Friend ReadOnly Line As SKColor
        Friend ReadOnly Glow As SKColor


        Friend Sub New(top As SKColor,
                       mid As SKColor,
                       bottom As SKColor,
                       accent As SKColor,
                       line As SKColor,
                       glow As SKColor)

            Me.Top = top
            Me.Mid = mid
            Me.Bottom = bottom
            Me.Accent = accent
            Me.Line = line
            Me.Glow = glow

        End Sub

    End Class

End Namespace