raven/src/Styles.hpp

33 lines
542 B
C++
Raw Normal View History

2022-06-11 15:52:23 +03:00
#pragma once
#include "GenericStyle.hpp"
2022-06-11 15:52:23 +03:00
namespace Raven {
2022-06-12 23:39:48 +03:00
extern RGB unused;
extern RGB white4;
extern RGB white3;
extern RGB white2;
extern RGB white1;
extern RGB white0;
extern RGB black0;
extern RGB black1;
extern RGB black2;
extern RGB black3;
extern RGB black4;
extern RGB black5;
extern RGB black6;
extern RGB accent0;
extern RGB accent1;
extern RGB accent2;
2022-06-11 15:52:23 +03:00
extern GenericStyle default_widget_style;
extern GenericStyle default_button_style;
2022-06-12 22:16:26 +03:00
extern GenericStyle accent_button_style;
2022-06-11 15:52:23 +03:00
extern GenericStyle default_label_style;
}