mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-24 01:40:06 +00:00
XCharts 2.0
This commit is contained in:
32
Runtime/Component/Theme/SubTitleTheme.cs
Normal file
32
Runtime/Component/Theme/SubTitleTheme.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
/************************************************/
|
||||
/* */
|
||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
||||
/* https://github.com/monitor1394 */
|
||||
/* */
|
||||
/************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace XCharts
|
||||
{
|
||||
[Serializable]
|
||||
public class SubTitleTheme : ComponentTheme
|
||||
{
|
||||
public SubTitleTheme(Theme theme) : base(theme)
|
||||
{
|
||||
m_FontSize = XChartsSettings.fontSizeLv2;
|
||||
switch (theme)
|
||||
{
|
||||
case Theme.Default:
|
||||
m_TextColor = ColorUtil.GetColor("#969696");
|
||||
break;
|
||||
case Theme.Light:
|
||||
m_TextColor = ColorUtil.GetColor("#969696");
|
||||
break;
|
||||
case Theme.Dark:
|
||||
m_TextColor = ColorUtil.GetColor("#B9B8CE");
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user