README.md
## iOS7 Colors CommonJS module.
Color code from http://codepen.io/ChrisNager/pen/qjbdt
I had a test for Titanium Mobile only. But you can use this for any platform supporting hex color code.
![capture](http://cl.ly/image/1q120B0t2e0b/ios7colors.png)
app.js
// This example require Underscore.js. If Alloy project, do not need required.
// var _ = require('underscore');
var iOS7Colors = require('iOS7Colors');
var win = Ti.UI.createWindow({
backgroundColor : 'white',
layout : 'horizontal'
});
_.each(iOS7Colors,function(value,key){
This file has been truncated. show original
iOS7Colors.js
module.exports = {
red : '#ff3b30',
orange : '#ff9500',
yellow : '#fc0',
green : '#4cd964',
teal : '#34aadc',
blue : '#007aff',
violet : '#5856d6',
pink : '#ff2d55',
midGray : '#8e8e93',
This file has been truncated. show original