You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.5 KiB

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