using System;
namespace Shared.Phone.UserCenter
{
///
/// 个人中心的颜色
///
public class UserCenterColor
{
///
/// The m current.
///
private static uColor m_Current = null;
///
/// 个人中心的颜色
///
/// The current.
public static uColor Current
{
get
{
if (m_Current == null)
{
m_Current = new uColor();
}
return m_Current;
}
}
///
/// 更改指定颜色变量的值
///
/// Fild name.
/// Color value.
public void EditorColor(string fildName, uint colorValue)
{
if (m_Current == null)
{
m_Current = new uColor();
}
Type type = m_Current.GetType();
type.InvokeMember(fildName, System.Reflection.BindingFlags.SetField, null, m_Current, new object[] { colorValue });
}
}
///
/// 个人中心的全部颜色
///
public class uColor
{
///
/// ☆TopFrameLayout的背景色(0xfff9f9f9)
///
public uint TopFrameLayout = 0xfff9f9f9;
///
/// ☆BodyFrameLayout的背景色(0xfff5f6fa)
///
public uint BodyFrameLayout = 0xfff5f6fa;
///
/// ☆按钮的初始背景色(黑色 0xff232323)
///
public uint ClickButtonDefultColor = 0xff232323;
///
/// ☆按钮按下状态的背景色(灰色 0xff656565)
///
public uint ButtonClickStatuColor = 0xff656565;
///
/// ☆白色,主要用于FrameLayout的背景(0xffffffff)
///
public uint White = 0xffffffff;
///
/// ☆透明(0x00000000)
///
public uint Transparent = 0x00000000;
///
/// ☆正常文本字体颜色(0xff333333)
///
public uint TextColor1 = 0xff333333;
///
/// ☆特殊正常文本字体颜色2(0xff000000)
///
public uint TextColor2 = 0xff000000;
///
/// ☆特殊正常文本字体颜色3,这个是白色(0xffffffff)
///
public uint TextColor3 = 0xffffffff;
///
/// ☆特殊正常文本字体颜色4(0xff232323)
///
public uint TextColor4 = 0xff232323;
///
/// ☆行底线的颜色(0x66cccccc)
///
public uint ButtomLine = 0x66cccccc;
///
/// ☆输入框提示信息的字体颜色(0xffcccccc)
///
public uint TextTipColor = 0xffcccccc;
///
/// ☆连接动画那个球的背景色(0xfffc744b)
///
public uint ConcetionRoundColor = 0xfffc744b;
///
/// ☆黑色背景(0xff232323)
///
public uint BlackBackGround = 0xff232323;
///
/// ☆输入框边框的颜色(0xffcccccc)
///
public uint TextFrameColor = 0xffcccccc;
///
/// ☆输入框边框选中的颜色(0xfffc744b)
///
public uint TextFrameSelectColor = 0xfffc744b;
///
/// ☆头部标题的字体颜色(0xff030303)
///
public uint TopLayoutTitleText = 0xff030303;
///
/// ☆灰色字体颜色(0xff999999)
///
public uint TextGrayColor1 = 0xff999999;
///
/// ☆灰色字体颜色2(0xffcccccc)
///
public uint TextGrayColor2 = 0xffcccccc;
///
/// ☆灰色字体颜色3(0xff666666)
///
public uint TextGrayColor3 = 0xff666666;
///
/// ☆弹窗型画面的背景色(0x80000000)
///
public uint DialogBackColor = 0x80000000;
///
/// ☆橘色的文本颜色(0xfffc744b)
///
public uint TextOrangeColor = 0xfffc744b;
///
/// ☆行控件选择状态时的背景色
///
public uint RowSelectBackColor = 0xfffbfbfb;
///
/// 灰色
///
public uint Gray = 0xff6b6b6b;
///
/// 深灰色(稍微)
///
public uint DeepGray1 = 0xffd4d4d4;
///
/// 选中的颜色(蓝色)
///
public uint SelectTextColor = 0xff00aaf0;
///
/// 深蓝色
///
public uint DeepBlue = 0xff3699e2;
///
/// 按钮的初始背景色
///
public uint ClickButtonColor = 0xff3699e2;
///
/// 按钮按下的背景色(灰色)
///
public uint ButtonClickColor = 0xffadadad;
///
/// 红色(0xfff62f48)
///
public uint Red = 0xfff62f48;
///
/// 橘色
///
public uint Orange = 0xffff870f;
///
/// 绿色
///
public uint Green = 0xff09ff09;
///
/// 浅蓝色
///
public uint WathetBlue = 0xffa2ffff;
///
/// 浅紫色
///
public uint purply = 0xfff4b7f1;
///
/// 1明细(BodyFramelayout)里面的标题控件的颜色(0xff000000)
///
public uint DetailTitleTextColor = 0xff000000;
///
/// 线的颜色
///
public uint Line = 0xffadadad;
///
/// 蓝色字体
///
public uint TextBlueColor = 0xff3699e2;
///
/// 1灰色字体颜色(0xff999999)
///
public uint TextGrayColor = 0xff999999;
///
/// RowLayout的编辑按钮的背景色
///
public uint RowEditorButtonColor = 0xffff870f;
///
/// RowLayout的删除按钮的背景色
///
public uint RowDeleteButtonColor = 0xfff32514;
///
/// 粉红色(远程连接的背景色)
///
public uint RemoteLinkPink = 0xffffb9b9;
}
}