Improve background of plex panel

This commit is contained in:
Tyler Perkins 2021-12-23 21:26:51 -05:00
parent 22bde518ba
commit e2347adb16
2 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 472 KiB

After

Width:  |  Height:  |  Size: 357 KiB

View File

@ -28,10 +28,10 @@ namespace dashboard::panel {
constexpr size_t PLEX_UPDATE_INTERVAL = 15000;
//Color for background bounding boxes
constexpr uint8_t PLEX_BGBOX_RED = 0xD3;
constexpr uint8_t PLEX_BGBOX_GREEN = 0xD3;
constexpr uint8_t PLEX_BGBOX_BLUE = 0xD3;
constexpr uint8_t PLEX_BGBOX_ALPHA = 0x7F;
constexpr uint8_t PLEX_BGBOX_RED = 0x66;
constexpr uint8_t PLEX_BGBOX_GREEN = 0x66;
constexpr uint8_t PLEX_BGBOX_BLUE = 0x66;
constexpr uint8_t PLEX_BGBOX_ALPHA = 0x99;
}