mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
31 lines
915 B
C#
31 lines
915 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using System;
|
|
|
|
namespace XCharts
|
|
{
|
|
[Serializable]
|
|
public class TitleTheme : ComponentTheme
|
|
{
|
|
public TitleTheme(Theme theme) : base(theme)
|
|
{
|
|
m_FontSize = XChartsSettings.fontSizeLv1;
|
|
switch (theme)
|
|
{
|
|
case Theme.Default:
|
|
m_TextColor = ColorUtil.GetColor("#514D4D");
|
|
break;
|
|
case Theme.Light:
|
|
break;
|
|
case Theme.Dark:
|
|
m_TextColor = ColorUtil.GetColor("#EEF1FA");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} |