aboutsummaryrefslogtreecommitdiff
path: root/users/brandonschlack/rgb_theme.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/brandonschlack/rgb_theme.h')
-rw-r--r--users/brandonschlack/rgb_theme.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/users/brandonschlack/rgb_theme.h b/users/brandonschlack/rgb_theme.h
new file mode 100644
index 000000000..7c8b2923f
--- /dev/null
+++ b/users/brandonschlack/rgb_theme.h
@@ -0,0 +1,51 @@
1/* Copyright 2020 Brandon Schlack
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "brandonschlack.h"
19#include "color.h"
20#include "rgblight_list.h"
21
22/*TODO Update as RGBLIGHT Mode */
23#ifndef RGB_THEME_COLORS_MAX
24#define RGB_THEME_COLORS_MAX 5
25#endif
26
27enum rgb_themes {
28#define RGB_THEME(name) RGB_THEME_##name,
29 #include "rgb_theme_user.inc"
30#undef RGB_THEME
31 RGB_THEME_MAX
32};
33
34// RGB Theme Color
35typedef const HSV rgb_theme_color_t;
36#define RGB_THEME_COLOR(tname, tcolor,...) rgb_theme_color_t tname ## _ ## tcolor = { __VA_ARGS__ }
37
38// RGB Theme
39typedef struct {
40 const HSV *colors[RGB_THEME_COLORS_MAX];
41} rgb_theme_t;
42extern const rgb_theme_t *themes[];
43
44void set_rgb_theme(uint8_t index);
45rgb_theme_t get_rgb_theme(void);
46
47void rgb_theme_step(void);
48void rgb_theme_step_reverse(void);
49
50rgb_theme_color_t get_rgb_theme_color(uint8_t index);
51void rgb_theme_layer(layer_state_t state);