2010-06-17 13:10:45 -04:00
|
|
|
#ifdef __OBJC__
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <UIKit/UIKit.h>
|
2013-03-04 15:09:09 -08:00
|
|
|
#import "Underscore.h"
|
|
|
|
|
|
|
|
#define _ Underscore
|
2011-08-24 10:24:02 -07:00
|
|
|
|
|
|
|
#define UIColorFromRGB(rgbValue) [UIColor \
|
|
|
|
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
|
|
|
|
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
|
|
|
|
blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
|
|
|
|
|
2012-08-14 17:20:45 -07:00
|
|
|
// #define BACKGROUND_REFRESH_SECONDS -5
|
|
|
|
#define BACKGROUND_REFRESH_SECONDS -10*60
|
2011-10-18 17:44:05 -07:00
|
|
|
|
2013-07-02 16:08:38 -07:00
|
|
|
// #define NEWSBLUR_URL [NSString stringWithFormat:@"http://nb.local.com"]
|
|
|
|
// #define NEWSBLUR_HOST [NSString stringWithFormat:@"nb.local.com"]
|
|
|
|
#define NEWSBLUR_URL [NSString stringWithFormat:@"https://www.newsblur.com"]
|
|
|
|
#define NEWSBLUR_HOST [NSString stringWithFormat:@"www.newsblur.com"]
|
2011-10-06 16:25:38 -07:00
|
|
|
|
2012-08-08 13:48:10 -07:00
|
|
|
#define NEWSBLUR_LINK_COLOR 0x405BA8
|
2012-08-10 09:45:44 -07:00
|
|
|
#define NEWSBLUR_HIGHLIGHT_COLOR 0xd2e6fd
|
2012-07-28 23:31:12 -07:00
|
|
|
#endif
|