-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathSCXcodeMinimapTheme.h
More file actions
35 lines (25 loc) · 1.2 KB
/
SCXcodeMinimapTheme.h
File metadata and controls
35 lines (25 loc) · 1.2 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
//
// SCXcodeMinimapTheme.h
// SCXcodeMinimap
//
// Created by Stefan Ceriu on 5/24/15.
// Copyright (c) 2015 Stefan Ceriu. All rights reserved.
//
#import "DVTFontAndColorTheme.h"
@interface SCXcodeMinimapTheme : NSObject
+ (SCXcodeMinimapTheme *)minimapThemeWithTheme:(DVTFontAndColorTheme *)theme;
@property (nonatomic, strong) NSColor *backgroundColor;
@property (nonatomic, strong) NSColor *selectionColor;
@property (nonatomic, strong) NSColor *sourcePlainTextColor;
@property (nonatomic, strong) NSColor *sourceTextBackgroundColor;
@property (nonatomic, strong) NSColor *commentBackgroundColor;
@property (nonatomic, strong) NSColor *preprocessorBackgroundColor;
@property (nonatomic, strong) NSColor *enabledBreakpointColor;
@property (nonatomic, strong) NSColor *disabledBreakpointColor;
@property (nonatomic, strong) NSColor *buildIssueWarningBackgroundColor;
@property (nonatomic, strong) NSColor *buildIssueErrorBackgroundColor;
@property (nonatomic, strong) NSColor *highlightedSymbolBackgroundColor;
@property (nonatomic, strong) NSColor *searchResultForegroundColor;
@property (nonatomic, strong) NSColor *searchResultBackgroundColor;
@property (nonatomic, strong) DVTFontAndColorTheme *dvtTheme;
@end