Difference between revisions of "Dark theme"

From Lazarus wiki
Jump to navigationJump to search
m (Fixed heading levels; categorised page; add macOS External links section)
Line 1: Line 1:
How to detect dark theme is OS?
+
How to detect whether the operating system is using a dark theme?
  
=Universal method=
+
== Universal method ==
  
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
Line 15: Line 15:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=Windows=
+
== Windows method ==
  
==Example 1==
+
=== Example 1 ===
  
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
Line 53: Line 53:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
      
 
      
=macOS=
+
== macOS method ==
  
==Example 1==
+
=== Example 1 ===
  
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
Line 100: Line 100:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==Example 2==
+
=== Example 2 ===
 +
 
 
Catalina added an "Auto" option where the computer switches between Light and Dark modes depending on time of day.
 
Catalina added an "Auto" option where the computer switches between Light and Dark modes depending on time of day.
 
The 'AppleInterfaceStyle' method apparently doesn't work if auto is enabled.
 
The 'AppleInterfaceStyle' method apparently doesn't work if auto is enabled.
Line 119: Line 120:
 
end;
 
end;
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
=== External links ===
 +
 +
* [https://developer.apple.com/documentation/appkit/nsappearance Apple: NSAppearnce].
 +
* [https://developer.apple.com/documentation/appkit/nsappearance/2980972-bestmatchfromappearanceswithname Apple: bestMatchFromAppearancesWithName]
 +
 +
[[Category:FPC]]
 +
[[Category:macOS]]
 +
[[Category:Windows]]

Revision as of 01:55, 28 August 2020

How to detect whether the operating system is using a dark theme?

Universal method

// by "dbannon" from Lazarus forum
function IsDarkTheme(F: TForm): boolean;
var
  Col : string;
begin
  // if char 3, 5 and 7 are all 'A' or above, we are not in a DarkTheme
  Col := HexStr(qword(F.GetRGBColorResolvingParent()), 8);
  Result := (Col[3] < 'A') and (Col[5] < 'A') and (Col[7] < 'A');
end;

Windows method

Example 1

// by "jwdietrich" from Lazarus forum
uses
  Windows, Win32Proc, Registry;
     
// IsDarkTheme: Detects if the Dark Theme (true) has been enabled or not (false)
function DarkTheme: boolean;
const
  KEYPATH = '\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize';
  KEYNAME = 'AppsUseLightTheme';
var
  LightKey: boolean;
  Registry: TRegistry;
begin
  Result := false;
  Registry := TRegistry.Create;
  try
    Registry.RootKey := HKEY_CURRENT_USER;
    if Registry.OpenKeyReadOnly(KEYPATH) then
      begin
        if Registry.ValueExists(KEYNAME) then
          LightKey := Registry.ReadBool(KEYNAME)
        else
          LightKey := true;
      end
    else
      LightKey := true;
      Result := not LightKey
  finally
    Registry.Free;
  end;
end;

macOS method

Example 1

// by "jwdietrich" from Lazarus forum
uses
  MacOSAll;
     
function IsMinMacOS(Maj, Min: integer): boolean;
  { returns true, if this app runs on a macOS version as specified or newer }
var
  Major, Minor: SInt32;
  theError: SInt16;
begin
  result := false;
  theError := Gestalt(gestaltSystemVersionMajor, Major);
  if theError = 0 then
    theError := Gestalt(gestaltSystemVersionMinor, Minor);
  if theError = 0 then
    if (Major = Maj) and (Minor >= Min) or (Major > Maj) then
      Result := True;
end;
     
function MojaveOrNewer: boolean;
  { returns true, if this app runs on macOS X 10.14 Mojave or newer }
begin
  result := IsMinMacOS(10, 14);
end;
     
{ The following two functions were suggested by Hansaplast at https://forum.lazarus.freepascal.org/index.php/topic,43111.msg304366.html }
     
// Retrieve key's string value from user preferences. Result is encoded using NSStrToStr's default encoding.
function GetPrefString(const KeyName : string) : string;
begin
  Result := NSStringToString(NSUserDefaults.standardUserDefaults.stringForKey(NSStr(@KeyName[1])));
end;
     
// IsDarkTheme: Detects if the Dark Theme (true) has been enabled or not (false)
function DarkTheme: boolean;
begin
  Result := false;
  if MojaveOrNewer then
    Result := pos('DARK',UpperCase(GetPrefString('AppleInterfaceStyle'))) > 0;
end;

Example 2

Catalina added an "Auto" option where the computer switches between Light and Dark modes depending on time of day. The 'AppleInterfaceStyle' method apparently doesn't work if auto is enabled.

The solution is to get the NSApp.effectiveAppearance string which will be one of a number of values including 'NSAppearanceNameAqua' (standard light mode) and 'NSAppearanceNameDarkAqua' (standard dark mode). Google these to see the whole list which includes other light and dark modes with added contrast. The effectiveAppearance is correct in all modes including when auto mode kicks in.

Tested on Mojave, Catalina, Big Sur.

// by "Clover" from Lazarus forum
function IsMacDarkMode: Boolean;
var
  sMode: string;
begin
  //sMode := CFStringToStr( CFStringRef( NSUserDefaults.StandardUserDefaults.stringForKey( NSSTR('AppleInterfaceStyle') ))); // Doesn't work in auto mode
  sMode  := CFStringToStr( CFStringRef( NSApp.effectiveAppearance.name ));
  Result := Pos('Dark', sMode) > 0;
end;

External links