using System;
namespace HDL_ON.UI.Music
{
public static class TextSize
{
public static int TopLine = 1;
public static int MiddleLine =1;
public static int DownLine = 1;
public static int Text24 = 24;
public static int Text20 = 20;
public static int Text18 = 18;
public static int Text16 = 16;
public static int Text14 = 14;
public static int Text12 = 12;
public static int Text10 = 10;
}
public static class Color
{
///
/// 顶部背景颜色
///
public static uint TopViewColor = 0xFFF7F7F7;
///
/// 界面背景颜色
///
public static uint ViewColor = 0xFFF2F3F7;
///
/// 白色背景颜色
///
public static uint WhiteColor = 0xFFFFFFFF;
///
/// 线条颜色
///
public static uint LineColor =0xFFECEDEE;
///
/// 弹窗背景颜色
///
public static uint PopupBackgroundColor = 0x90000000;
///
/// 线条颜色
///
public static uint MusicEditColor = 0xFFFC9C04;
///
/// 弹窗背景颜色
///
public static uint MusicDelColor = 0xFFFF7474;
public static uint Text18Color = 0xFF1B2D4D;
public static uint MusicTxet14SelectedColor = 0xFF4484F4;
public static uint MusicTxet14Color = 0xFF1B2D4D;
public static uint MusicTxet12SelectedColor = 0xFF4484F4;
public static uint MusicNoTxetColor = 0xFFC0C7D4;
public static uint TextColor = 0xFF1B2D4D;
public static uint SelectedColor = 0xFF4484F4;
public static uint TextTimeColor = 0xFF798394;
}
public static class H_W {
///
/// app高度
///
public static int H = 667;
///
/// app宽度
///
public static int W = 375;
///
/// 顶部高度
///
public static int T_Height = 64;
///
/// 线高度
///
public static int Line = 1;
}
}