forked from DeepIT/XcodeColors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXcodeColors.h
More file actions
39 lines (31 loc) · 776 Bytes
/
XcodeColors.h
File metadata and controls
39 lines (31 loc) · 776 Bytes
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
//
// XcodeColors.h
// XcodeColors
//
// Created by Uncle MiF on 9/13/10.
// Copyright 2010 Deep IT. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface XcodeColors : NSObject
// Foreground
+(NSColor*)blackColor;
+(NSColor*)redColor;
+(NSColor*)greenColor;
+(NSColor*)yellowColor;
+(NSColor*)blueColor;
+(NSColor*)magentaColor;
+(NSColor*)cyanColor;
+(NSColor*)whiteColor;
// Background
+(NSColor*)blackBackgroundColor;
+(NSColor*)redBackgroundColor;
+(NSColor*)greenBackgroundColor;
+(NSColor*)yellowBackgroundColor;
+(NSColor*)blueBackgroundColor;
+(NSColor*)magentaBackgroundColor;
+(NSColor*)cyanBackgroundColor;
+(NSColor*)whiteBackgroundColor;
// Plugin
+(void)pluginDidLoad:(id)xcodeDirectCompatibility;
-(void)registerLaunchSystemDescriptions;
@end