97 lines
2.3 KiB
C++
97 lines
2.3 KiB
C++
/*
|
|
Borealis, a Nintendo Switch UI Library
|
|
Copyright (C) 2019 natinusala
|
|
Copyright (C) 2019 p-sam
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <nanovg.h>
|
|
|
|
namespace brls
|
|
{
|
|
|
|
// Theme variants
|
|
// (used in Application)
|
|
//
|
|
// Not an enum class because it's used
|
|
// as an array index in Theme
|
|
enum ThemeVariant
|
|
{
|
|
ThemeVariant_LIGHT = 0,
|
|
ThemeVariant_DARK,
|
|
ThemeVariant_NUMBER_OF_VARIANTS
|
|
};
|
|
|
|
typedef struct
|
|
{
|
|
float backgroundColor[3]; // gl color
|
|
NVGcolor backgroundColorRGB;
|
|
|
|
NVGcolor textColor;
|
|
NVGcolor descriptionColor;
|
|
|
|
NVGcolor notificationTextColor;
|
|
NVGcolor backdropColor;
|
|
|
|
NVGcolor separatorColor;
|
|
|
|
NVGcolor sidebarColor;
|
|
NVGcolor activeTabColor;
|
|
NVGcolor sidebarSeparatorColor;
|
|
|
|
NVGcolor highlightBackgroundColor;
|
|
NVGcolor highlightColor1;
|
|
NVGcolor highlightColor2;
|
|
|
|
NVGcolor listItemSeparatorColor;
|
|
NVGcolor listItemValueColor;
|
|
NVGcolor listItemFaintValueColor;
|
|
|
|
NVGcolor tableEvenBackgroundColor;
|
|
NVGcolor tableBodyTextColor;
|
|
|
|
NVGcolor dropdownBackgroundColor;
|
|
|
|
NVGcolor nextStageBulletColor;
|
|
|
|
NVGcolor spinnerBarColor;
|
|
|
|
NVGcolor headerRectangleColor;
|
|
|
|
NVGcolor buttonPlainEnabledBackgroundColor;
|
|
NVGcolor buttonPlainDisabledBackgroundColor;
|
|
NVGcolor buttonPlainEnabledTextColor;
|
|
NVGcolor buttonPlainDisabledTextColor;
|
|
|
|
NVGcolor dialogColor;
|
|
NVGcolor dialogBackdrop;
|
|
NVGcolor dialogButtonColor;
|
|
NVGcolor dialogButtonSeparatorColor;
|
|
} ThemeValues;
|
|
|
|
// A theme contains colors for all variants
|
|
class Theme
|
|
{
|
|
public:
|
|
ThemeValues colors[ThemeVariant_NUMBER_OF_VARIANTS];
|
|
|
|
// As close to HOS as possible
|
|
static Theme horizon();
|
|
};
|
|
|
|
} // namespace brls
|