SubZero Common
Common library components for an FRC CommandRobot
Loading...
Searching...
No Matches
ColorConstants.h
Go to the documentation of this file.
1#pragma once
2
3#include <frc/util/Color.h>
4#include <frc/util/Color8Bit.h>
5
6namespace subzero {
7namespace ColorConstants {
8static const frc::Color8Bit kYellow{0xE5, 0xD5, 0x24};
9static const frc::Color8Bit kPurple{0x57, 0x14, 0xE8};
10static const frc::Color8Bit kRed{0xFC, 0x19, 0x19};
11static const frc::Color8Bit kGreen{0x28, 0xCC, 0x2E};
12static const frc::Color8Bit kBlue{0x08, 0x3B, 0xD3};
13static const frc::Color8Bit kTeal{0x18, 0x9B, 0xCE};
14static const frc::Color8Bit kOrange{0xE8, 0x61, 0x19};
15static const frc::Color8Bit kAcidGreen{0xB0, 0xBF, 0x1A};
16static const frc::Color8Bit kBlack{0x00, 0x00, 0x00};
17} // namespace ColorConstants
18} // namespace subzero