9 lines
257 B
Objective-C
9 lines
257 B
Objective-C
//go:build !ios && !wasm && !test_web_driver && !mobile
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
bool isDarkMode() {
|
|
NSString *style = [[NSUserDefaults standardUserDefaults] stringForKey:@"AppleInterfaceStyle"];
|
|
return [@"Dark" isEqualToString:style];
|
|
}
|