Option Strict On
Option Explicit On

Imports SkiaSharp

Namespace Nexamas.UI.Theming

    Friend NotInheritable Class SelectionLabelTheme
        Implements ISelectionLabelTheme

        Friend Sub New(normalText As SKColor,
                       disabledText As SKColor)

            _normalText = normalText
            _disabledText = disabledText
        End Sub

        Private ReadOnly _normalText As SKColor
        Private ReadOnly _disabledText As SKColor

        Public ReadOnly Property NormalText As SKColor Implements ISelectionLabelTheme.NormalText
            Get
                Return _normalText
            End Get
        End Property

        Public ReadOnly Property DisabledText As SKColor Implements ISelectionLabelTheme.DisabledText
            Get
                Return _disabledText
            End Get
        End Property

    End Class

End Namespace