-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathZenithDark.h
34 lines (22 loc) · 1.02 KB
/
ZenithDark.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
/*
Dark Mode for Zenith's Grabber view!
Copyright 2020 J.K. Hayslip (@iKilledAppl3) & ToxicAppl3 INSDC/iKilledAppl3 LLC.
All code was written for learning purposes and credit must be given to the original author.
Written for Cooper Hull, (@mac-user669).
ZenithDark Header file to keep the tweak.x file clean!
*/
#import <Cephei/HBPreferences.h>
#import <CepheiPrefs/HBRootListController.h>
#import <CepheiPrefs/HBAppearanceSettings.h>
#include <CSColorPicker/CSColorPicker.h>
@import UIKit;
@interface ZNGrabberAccessoryView : UIImageView
@end
NSMutableDictionary *prefs;
#define kDarkModeColor [UIColor colorWithWhite:0.0 alpha:0.44]
#define kLightModeColor [UIColor colorWithWhite:1.0 alpha:0.7]
#define kColor1 [UIColor redColor] // Color used for testing
#define kColor2 [UIColor greenColor] // Color used for testing
#define kColor3 [UIColor blueColor] // Color used for testing
#define kColor4 [UIColor cyanColor] // Color used for testing
#define PLIST_PATH @"/var/mobile/Library/Preferences/com.mac-user669.zenithdark.plist"