rgb_theme.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. #include "brandonschlack.h"
  18. #include "color.h"
  19. /*TODO Update as RGBLIGHT Mode */
  20. #ifndef RGB_THEME_COLORS_MAX
  21. #define RGB_THEME_COLORS_MAX 5
  22. #endif
  23. enum rgb_themes {
  24. #define RGB_THEME(name) RGB_THEME_##name,
  25. #include "rgb_theme_user.inc"
  26. #undef RGB_THEME
  27. RGB_THEME_MAX
  28. };
  29. // RGB Theme Color
  30. typedef const HSV rgb_theme_color_t;
  31. #define RGB_THEME_COLOR(tname, tcolor,...) rgb_theme_color_t tname ## _ ## tcolor = { __VA_ARGS__ }
  32. // RGB Theme
  33. typedef struct {
  34. const HSV *colors[RGB_THEME_COLORS_MAX];
  35. } rgb_theme_t;
  36. extern const rgb_theme_t *themes[];
  37. void set_rgb_theme(uint8_t index);
  38. rgb_theme_t get_rgb_theme(void);
  39. void rgb_theme_step(void);
  40. void rgb_theme_step_reverse(void);
  41. rgb_theme_color_t get_rgb_theme_color(uint8_t index);
  42. void rgb_theme_layer(layer_state_t state);