11 lines
184 B
Python
11 lines
184 B
Python
import wx
|
|
|
|
|
|
def isDark():
|
|
try:
|
|
return wx.SystemSettings.GetAppearance().IsDark()
|
|
except (KeyboardInterrupt, SystemExit):
|
|
raise
|
|
except:
|
|
return False
|