Alison Bartsch / Mbed 2 deprecated FreeFlyerROS

Dependencies:   mbed ros_lib_kinetic

colors.h

Committer:
alisonsb
Date:
2019-11-13
Revision:
7:1be54ceadd53
Parent:
1:40bdbe1a93b7

File content as of revision 7:1be54ceadd53:

#ifndef COLORS_H
#define COLORS_H

#include "RGBA.h"

// meep

namespace color {
    const RGBA<float> white   (255, 255, 255,   0);
    const RGBA<float> red     (255,   0,   0,   0);
    const RGBA<float> green   (  0, 255,   0,   0);
    const RGBA<float> blue    (  0,   0, 255,   0);
    const RGBA<float> yellow  (255, 255,   0,   0);
    const RGBA<float> cyan    (  0, 255, 255,   0);
    const RGBA<float> magenta (255,   0, 255,   0);
    
} // End "color" namespace



#endif COLORS_H