mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-28 07:35:20 +00:00
23 lines
318 B
Plaintext
23 lines
318 B
Plaintext
#import "MacDarkMode.hpp"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@implementation MacDarkMode
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
bool mac_dark_mode()
|
|
{
|
|
NSString *style = [[NSUserDefaults standardUserDefaults] stringForKey:@"AppleInterfaceStyle"];
|
|
return style && [style isEqualToString:@"Dark"];
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
@end
|