using UnityEngine; namespace HK { [CreateAssetMenu(fileName = "FontThemeObject", menuName = "ScriptableObjects/FontThemeObject", order = 2)] public class FontThemeScriptableObject : ThemeBaseScriptableObject { public class Data { public Sprite bg; public Color[] bgColors; public Sprite font; public Color[] fontColors; } } }