Skip to content

Instantly share code, notes, and snippets.

@nicwise
Created June 5, 2012 16:58
Show Gist options
  • Save nicwise/2876233 to your computer and use it in GitHub Desktop.
Save nicwise/2876233 to your computer and use it in GitHub Desktop.
namespace MyApp
{
public static class Resources
{
public static UIImage Overview = UIImage.FromFile("images/tabbar_overview.png");
public static UIImage Records = UIImage.FromFile("images/tabbar_records.png");
public static UIImage Deadlines = UIImage.FromFile("images/tabbar_deadlines.png");
public static UIImage You = UIImage.FromFile("images/tabbar_you.png");
public static UIColor UIGreen = UIColor.FromRGBA(96,152,0,255);
public static UIColor UIRed = UIColor.FromRGBA(202,29,29,255);
public static UIColor UIBlack = UIColor.FromRGBA(82,82,82,255);
public static UIColor UIGrey = UIColor.FromRGBA(155,155,155,255);
public static UIColor UIWhite = UIColor.FromRGBA(250,250,250,255);
public static UIColor UIBlue = UIColor.FromRGBA (19,96,139,255);
public static UIColor UISectionTitleColor = UIColor.FromRGBA(102,102,102,255);
public static UIColor NavBarTintColor = UIColor.FromRGBA(25,80,120,255);
public static UIColor CancelButtonEnabled = UIColor.FromRGBA(102,102,102,255);
public static UIColor CancelButtonDisabled = UIColor.FromRGBA(187,187,187,255);
public static UIImage HeaderTearoff = UIImage.FromFile("images/headertearoff.png");
public static UIImage FooterTearoff = UIImage.FromFile("images/footertearoff.png");
public static UIImage InvoiceBody = UIImage.FromFile("images/invoicebackground.png");
//lots more here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment