18 lines
606 B
C#
18 lines
606 B
C#
using UnityEngine;
|
|
|
|
namespace Intrepid.Core.Themes
|
|
{
|
|
public class UIButtonTheme : AbstractThemeRelated
|
|
{
|
|
public UIButtonTheme(Palettes palettes) : base(palettes)
|
|
{
|
|
}
|
|
|
|
public Color Text => Palettes.Bundle.Contrast.Text;
|
|
public Color Background => Palettes.Bundle.Contrast.Background;
|
|
public Color Available => Palettes.Bundle.States.Available;
|
|
public Color Selected => Palettes.Bundle.States.Selected;
|
|
public Color Clicked => Palettes.Bundle.States.Clicked;
|
|
public Color Denied => Palettes.Bundle.States.Denied;
|
|
}
|
|
} |