is_dark_mode

From Kolmafia
Revision as of 05:13, 21 December 2020 by Philmasterplus (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Syntax

boolean is_dark_mode()

Checks if the current KoLmafia theme is dark mode.

Checks if the current KoLmafia theme is one of the "dark mode" themes. This function was added in r20566.

Code Samples

Use a different text color based on the user's theme.

string WARN_COLOR = is_dark_mode() ? "#FFFF00" : "#A0522D";
print("This is a warning.", WARN_COLOR);