fsh::stk
fantastic spatial holophonic synthesis toolkit
Loading...
Searching...
No Matches
Colors.h
1/***************************************************************************************************
2 ██████ █████ █████ █████
3 ███░░███ ░░███ ░░███ ░░███
4 ░███ ░░░ █████ ░███████ ██ ██ █████ ███████ ░███ █████
5 ███████ ███░░ ░███░░███ ░░ ░░ ███░░ ░░░███░ ░███░░███
6 ░░░███░ ░░█████ ░███ ░███ ░░█████ ░███ ░██████░
7 ░███ ░░░░███ ░███ ░███ ░░░░███ ░███ ███ ░███░░███
8 █████ ██████ ████ █████ ██ ██ ██████ ░░█████ ████ █████
9 ░░░░░ ░░░░░░ ░░░░ ░░░░░ ░░ ░░ ░░░░░░ ░░░░░ ░░░░ ░░░░░
10
11 fantastic spatial holophonic synthesis tool kit
12
13 copyright (c) fabian hummel
14 www.github.com/fshstk
15 www.fshstk.com
16
17 this file is part of the fantastic spatial holophonic synthesis toolkit (fsh::stk)
18 fsh::stk is free software: it is provided under the terms of the gnu general public license v3.0
19 www.gnu.org/licenses/gpl-3.0
20***************************************************************************************************/
21
22#pragma once
23#include <juce_gui_basics/juce_gui_basics.h>
24
25namespace fsh::gui
26{
30struct Colors
31{
32 inline static const juce::Colour background{ 48, 48, 48 };
33 inline static const juce::Colour foreground{ 218, 218, 218 };
34 inline static const juce::Colour transparent{ 0.0f, 0.0f, 0.0f, 0.0f };
35
36 inline static const auto darkblue = juce::Colour{ 0xff'25283d };
37 inline static const auto light = juce::Colour{ 0xff'ffeddf };
38 inline static const auto gold = juce::Colour{ 0xff'fbcf23 };
39 inline static const auto red = juce::Colour{ 0xff'b91327 };
40 inline static const auto dark = juce::Colour{ 0xff'2c363f };
41};
42} // namespace fsh::gui
Colors used by the GUI.
Definition Colors.h:31
static const juce::Colour background
Background color.
Definition Colors.h:32
static const juce::Colour foreground
Foreground color.
Definition Colors.h:33
static const auto red
Red.
Definition Colors.h:39
static const auto dark
Dark.
Definition Colors.h:40
static const auto gold
Gold.
Definition Colors.h:38
static const auto light
Light.
Definition Colors.h:37
static const juce::Colour transparent
Transparent.
Definition Colors.h:34
static const auto darkblue
Dark blue.
Definition Colors.h:36