-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathConstants.h
34 lines (26 loc) · 1.42 KB
/
Constants.h
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
//
// Constants.h
// CarrierPigeon
//
// Created by Chris D'Angelo on 3/2/14.
// Copyright (c) 2014 ColumbiaMobileComputing. All rights reserved.
//
#ifndef CarrierPigeon_Constants_h
#define CarrierPigeon_Constants_h
// user info
#define kXMPPmyJID @"kXMPPmyJID"
#define kXMPPmyPassword @"kXMPPmyPassword"
#define kKeyChainItemWrapperPasswordIdentifer @"kXMPPmyPasswordKeychain"
#define kUserHasConnectedPreviously @"kUserHasConnectedPreviously"
// notification identifiers
#define kNewMessageReceivedNotificationIdentifier @"kNewMessageReceivedNotificationIdentifier"
// Color
#define kCarrierPigeonBlueColor [UIColor colorWithRed:101.0/255.0 green:166.0/255.0 blue:230.0/255.0 alpha:1.0]
#define kCarrierPigeonLightRedColor [UIColor colorWithRed:255.0/255.0 green:233.0/255.0 blue:233.0/255.0 alpha:1.0]
#define kCarrierPigeonLightGreenColor [UIColor colorWithRed:232.0/255.0 green:255.0/255.0 blue:220.0/255.0 alpha:1.0]
#define kCarrierPigeonLightYellowColor [UIColor colorWithRed:255.0/255.0 green:251.0/255.0 blue:202.0/255.0 alpha:1.0]
#define kCarrierPigeonRedColor [UIColor colorWithRed:222.0/255.0 green:0.0/255.0 blue:0.0/255.0 alpha:1.0]
#define kCarrierPigeonGreenColor [UIColor colorWithRed:110.0/255.0 green:187.0/255.0 blue:31.0/255.0 alpha:1.0]
#define kCarrierPigeonYellowColor [UIColor colorWithRed:253.0/255.0 green:234.0/255.0 blue:23.0/255.0 alpha:1.0]
#define kMaxCarrierPigeonsThatMayReceiveMessagePeerToPeer 5
#endif