mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
21 lines
656 B
C++
21 lines
656 B
C++
/*---------------------------------------------------------*\
|
|
| OpenRGBThemeManager.h |
|
|
| |
|
|
| Functionality for managing dark theme mode |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class OpenRGBThemeManager
|
|
{
|
|
public:
|
|
static void Init();
|
|
static void SetDarkTheme();
|
|
static bool IsDarkTheme();
|
|
};
|