using System;
using UnityEngine;
namespace EasyTalk.Display.Style
{
///
/// This class is used to define styling for a directional option display.
///
[Serializable]
public class DirectionalOptionDisplayStyle
{
///
/// The color to use for the main image.
///
[SerializeField][ColorUsage(true)] public Color mainImageColor = Color.white;
///
/// The color to use on a link when in 'normal' mode.
///
[SerializeField][ColorUsage(true)] public Color normalColor = Color.white;
///
/// The color to use on a link when in 'highlighted' mode.
///
[SerializeField][ColorUsage(true)] public Color highlightColor = Color.white;
///
/// The color to use on a link when in 'pressed' mode.
///
[SerializeField][ColorUsage(true)] public Color pressedColor = Color.white;
///
/// The color to use on a link when in 'disabled' mode.
///
[SerializeField][ColorUsage(true)] public Color disabledColor = Color.white;
}
}