-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89a2526
commit 44aa605
Showing
2 changed files
with
88 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#ifndef CUSTOM_COLORS_H_ | ||
#define CUSTOM_COLORS_H_ | ||
|
||
#include <Arduino.h> | ||
|
||
|
||
// COLORS https://rgbcolorpicker.com/565 | ||
|
||
uint16_t redColor = 0xc8a2; | ||
uint16_t redColorLight = 0xd8c4; | ||
uint16_t redColorDark = 0xa082; | ||
|
||
uint16_t greyColor = 0x7BEF; | ||
uint16_t greyColorLight = 0xBDF7; | ||
uint16_t greyColorDark = 0x39E7; | ||
|
||
uint16_t greenColor = 0x1482; | ||
uint16_t greenColorLight = 0x1d63; | ||
uint16_t greenColorDark = 0x0b22; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters