-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.h
More file actions
executable file
·42 lines (32 loc) · 1.53 KB
/
Constants.h
File metadata and controls
executable file
·42 lines (32 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// Constants.h
// Junction
//
// Created by Bobby Ren on 12/22/12.
//
//
#import <Foundation/Foundation.h>
@interface Constants : NSObject
#define TESTING 1
#define PARSE_HELPER_JUNCTION // parseHelper can use junction specific calls
#define PHOTO_BUCKET @"missionmade.junction.profile.photo"
#define PHOTO_BLUR_BUCKET @"missionmade.junction.profile.photoblur"
#define PHOTO_THUMB_BUCKET @"missionmade.junction.profile.photo.thumb"
#define PHOTO_BLUR_THUMB_BUCKET @"missionmade.junction.profile.photoblur.thumb"
#define PROFILE_WIDTH 280
#define PROFILE_HEIGHT 280
#define BROWSE_THUMB_SIZE 160
#define USE_SIDEBAR 0
#define SIDEBAR_WIDTH 40
// whether slider to change blurriness exists in profile
#define USE_SLIDER_IN_PROFILE 0
#define COLOR_FAINTBLUE [UIColor colorWithRed:231.0/255.0 green:242.0/255.0 blue:249.0/255.0 alpha:1]
#define COLOR_LIGHTBLUE [UIColor colorWithRed:146.0/255.0 green:198.0/255.0 blue:226.0/255.0 alpha:1]
#define COLOR_BRIGHTBLUE [UIColor colorWithRed:0/255.0 green:139.0/255.0 blue:199.0/255.0 alpha:1]
#define COLOR_NAVYBLUE [UIColor colorWithRed:11.0/255.0 green:51.0/255.0 blue:91.0/255.0 alpha:1]
#define COLOR_ORANGE [UIColor colorWithRed:255.0/255.0 green:116.0/255.0 blue:82.0/255.0 alpha:1]
#define COLOR_GRAY [UIColor colorWithRed:87.0/255.0 green:87.0/255.0 blue:87.0/255.0 alpha:1]
#define COLOR_GREEN [UIColor colorWithRed:51.0/255.0 green:153.0/255.0 blue:102.0/255.0 alpha:1]
#define COLOR_SLATE [UIColor colorWithRed:67.0/255.0 green:99.0/255.0 blue:132.0/255.0 alpha:1]
#define ANON_NAME @"Name Hidden"
@end