-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSettings.h
More file actions
34 lines (26 loc) · 1.18 KB
/
Settings.h
File metadata and controls
34 lines (26 loc) · 1.18 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
#define ScratchWidth 600
#define ScratchHeight 500
#define DefaultProjectWidth 700
#define DefaultProjectHeight 600
#define AmyThemeBackgroundColor @"1 1 1"
#define AmyThemeBaseColor @"0.1 0 0.4"
#define AmyThemeNormalColor [Settings lightColorStringWithString:AmyThemeBaseColor alpha:0.7]
#define AmyThemeMetaColor [Settings lightColorStringWithString:AmyThemeBaseColor alpha:0.5]
#define AmyThemeHighlightColor [Settings lightColorStringWithString:AmyThemeBaseColor alpha:0.05]
#define AmyThemeSelectionColor [Settings lightColorStringWithString:AmyThemeBaseColor alpha:0.15]
#define AmyThemeKeywordColor @"0.7 0 0.7"
#define AmyThemeTypeColor @"0.5 0 0.8"
#define AmyThemeStringColor @"0.8 0.3 1"
#define AmyThemeNumberColor @"0.5 0.3 1"
#define AmyThemeRegularFont @"SFMono-Regular - 12"
#define AmyThemeItalicFont @"SFMono-RegularItalic - 12"
#define AmyThemeBoldFont @"SFMono-Bold - 12"
#define AmyThemeTerminalFont @"SFMono-Regular"
#define AmyThemeTerminalFontSize 11
#define TypeOverrideMapping @{\
@"com.apple.property-list":@"public.xml",\
@"com.apple.applesingle-archive":@"com.netscape.javascript-source",\
@"com.apple.terminal.settings":@"public.xml"\
}
@interface Settings:NSObject
@end