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.

27 lines
353 B

  1. #ifndef SOLARIZED_H
  2. #define SOLARIZED_H
  3. #include "quantum/color.h"
  4. typedef struct {
  5. HSV base03;
  6. HSV base02;
  7. HSV base01;
  8. HSV base00;
  9. HSV base0;
  10. HSV base1;
  11. HSV base2;
  12. HSV base3;
  13. HSV yellow;
  14. HSV orange;
  15. HSV red;
  16. HSV magenta;
  17. HSV violet;
  18. HSV blue;
  19. HSV cyan;
  20. HSV green;
  21. } solarized_t;
  22. extern solarized_t solarized;
  23. #endif