Home > database >  Find if theme is dark or light in windows 10 using python
Find if theme is dark or light in windows 10 using python

Time:09-30

Is there any way to find if system has dark or light theme in windows 10? Has windows provided any api which will detect the theme using win32api that is usable from python 2.7?

CodePudding user response:

There is already an answer for this on How to get system color in python?

And perhaps Detect OS dark mode in Python might be useful too.

  • Related