2018-04-26 05:23:26 +00:00
|
|
|
|
using System;
|
2018-04-26 23:55:23 +00:00
|
|
|
|
using Xamarin.Forms;
|
2018-04-26 05:23:26 +00:00
|
|
|
|
namespace Ooui.Forms
|
|
|
|
|
{
|
|
|
|
|
public static class OouiTheme
|
|
|
|
|
{
|
|
|
|
|
public static readonly Color BackgroundColor = new Color (0xFF, 0xFF, 0xFF, 0xFF);
|
|
|
|
|
public static readonly Color TextColor = new Color (0x0, 0x0, 0x0, 0xFF);
|
|
|
|
|
public static readonly Color SecondaryTextColor = new Color (119, 119, 119, 0xFF);
|
|
|
|
|
|
|
|
|
|
public static readonly Color ButtonBackgroundColor = new Color (51, 122, 183, 0xFF);
|
|
|
|
|
public static readonly Color ButtonBorderColor = new Color (46, 109, 164, 0xFF);
|
|
|
|
|
public static readonly Color ButtonTextColor = new Color (0xFF, 0xFF, 0xFF, 0xFF);
|
2018-04-26 23:55:23 +00:00
|
|
|
|
|
|
|
|
|
public static readonly Size SwitchSize = new Size (54, 38);
|
2018-04-26 05:23:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|