using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
namespace HOZProject
{
///
/// Class TextColor.
///
public class TextColors
{
///
/// The more light
///
private static Color _MoreLight = ColorTranslator.FromHtml("#c0c4cc");
///
/// Gets the more light.
///
/// The more light.
public static Color MoreLight
{
get { return _MoreLight; }
internal set { _MoreLight = value; }
}
///
/// The light
///
private static Color _Light = ColorTranslator.FromHtml("#909399");
///
/// Gets the light.
///
/// The light.
public static Color Light
{
get { return _Light; }
internal set { _Light = value; }
}
///
/// The dark
///
private static Color _Dark = ColorTranslator.FromHtml("#606266");
///
/// Gets the dark.
///
/// The dark.
public static Color Dark
{
get { return _Dark; }
internal set { _Dark = value; }
}
///
/// The more dark
///
private static Color _MoreDark = ColorTranslator.FromHtml("#303133");
///
/// Gets the more dark.
///
/// The more dark.
public static Color MoreDark
{
get { return _MoreDark; }
internal set { _MoreDark = value; }
}
}
}