colors.h 588 B

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #include "midi/LaunchpadColor.h"
  3. namespace colors
  4. {
  5. typedef const midi::LaunchpadColor Color;
  6. Color dark(0, 0);
  7. Color activeOption(3, 3);
  8. Color inactiveOption(1, 2);
  9. Color inactiveMessage(1, 2);
  10. Color activeMessage(3, 2);
  11. Color inactiveOnBeat(2, 0);
  12. Color activeOnBeat(3, 1);
  13. Color inactiveContinuingBeat(1, 1);
  14. Color activeContinuingBeat(2, 2);
  15. Color inactiveBeatsCount(1, 0);
  16. Color activeBeatsCount(3, 1);
  17. Color sequenceExpansionButton(0, 1);
  18. Color sequenceReductionErasingConflictsButton(2, 0);
  19. Color inactiveBpmCount(0, 1);
  20. Color activeBpmCount(1, 3);
  21. }; // color