summaryrefslogtreecommitdiffstats
path: root/users/konstantin/rgb.h
blob: 2ea10c67a7ad9ec6e91affe010d85b1d74208196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "quantum.h"

typedef struct {
  uint16_t h;
  uint8_t  s;
  uint8_t  v;
} hsv_t;

typedef struct {
  uint8_t r;
  uint8_t g;
  uint8_t b;
} rgb_t;

extern const hsv_t GODSPEED_BLUE;