diff --git a/src/apps/icon-o-matic/generic/gui/ui_defines.h b/src/apps/icon-o-matic/generic/gui/ui_defines.h index 34cfb7f988..cc890a11c8 100644 --- a/src/apps/icon-o-matic/generic/gui/ui_defines.h +++ b/src/apps/icon-o-matic/generic/gui/ui_defines.h @@ -11,8 +11,26 @@ const rgb_color kBlack = { 0, 0, 0, 255 }; const rgb_color kWhite = { 255, 255, 255, 255 }; + +const rgb_color kRed = { 255, 0, 0, 255 }; +const rgb_color kGreen = { 0, 255, 0, 255 }; +const rgb_color kBlue = { 0, 0, 255, 255 }; + const rgb_color kOrange = { 255, 217, 121, 255 }; const rgb_color kLightOrange = { 255, 217, 138, 255 }; const rgb_color kDarkOrange = { 255, 145, 71, 255 }; +const rgb_color kAlphaLow = { 0xbb, 0xbb, 0xbb, 0xff }; +const rgb_color kAlphaHigh = { 0xe0, 0xe0, 0xe0, 0xff }; + + // tweak view settings +const rgb_color kStripesHigh = { 112, 112, 112, 255 }; +const rgb_color kStripesLow = { 104, 104, 104, 255 }; + + +const pattern kStripes = { { 0xc7, 0x8f, 0x1f, 0x3e, 0x7c, 0xf8, 0xf1, 0xe3 } }; +const pattern kDotted = { { 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa } }; +const pattern kDottedBigger = { { 0x33, 0x33, 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc } }; + + #endif // UI_DEFINES_H