View Raw SPL
/* is app in dark mode? */
isdarkmode()
{
        local status;

        status = (osstatus("darkmode") > 0);

        return(status);
}