diff --git a/es-core/src/components/ImageComponent.cpp b/es-core/src/components/ImageComponent.cpp
index f31829f28..f0c15d09b 100644
--- a/es-core/src/components/ImageComponent.cpp
+++ b/es-core/src/components/ImageComponent.cpp
@@ -368,7 +368,7 @@ void ImageComponent::render(const Transform4x4f& parentTrans)
             Vector2f targetSizePos = (mTargetSize - mSize) * mOrigin * -1;
             Renderer::drawRect(targetSizePos.x(), targetSizePos.y(), mTargetSize.x(),
                     mTargetSize.y(), 0xFF000033, 0xFF000033);
-            Renderer::drawRect(0.0f, 0.0f, mSize.x(), mSize.y(), 0x00000033, 0x00000033);
+            Renderer::drawRect(0.0f, 0.0f, mSize.x(), mSize.y(), 0xFF000033, 0xFF000033);
         }
         if (mTexture->isInitialized()) {
             // Actually draw the image.
diff --git a/es-core/src/components/RatingComponent.cpp b/es-core/src/components/RatingComponent.cpp
index 71bf81301..5710f9404 100644
--- a/es-core/src/components/RatingComponent.cpp
+++ b/es-core/src/components/RatingComponent.cpp
@@ -160,7 +160,7 @@ void RatingComponent::render(const Transform4x4f& parentTrans)
     if (mOpacity > 0) {
         if (Settings::getInstance()->getBool("DebugImage")) {
             Renderer::drawRect(0.0f, 0.0f, mSize.y() * NUM_RATING_STARS,
-                    mSize.y(), 0x00000033, 0x00000033);
+                    mSize.y(), 0xFF000033, 0xFF000033);
         }
 
         if (mUnfilledTexture->bind()) {
diff --git a/es-core/src/components/TextComponent.cpp b/es-core/src/components/TextComponent.cpp
index d4f9b0605..02ebc635f 100644
--- a/es-core/src/components/TextComponent.cpp
+++ b/es-core/src/components/TextComponent.cpp
@@ -165,7 +165,7 @@ void TextComponent::render(const Transform4x4f& parentTrans)
         if (Settings::getInstance()->getBool("DebugText")) {
             // Draw the "textbox" area, what we are aligned within.
             Renderer::setMatrix(trans);
-            Renderer::drawRect(0.0f, 0.0f, mSize.x(), mSize.y(), 0xFF000033, 0xFF000033);
+            Renderer::drawRect(0.0f, 0.0f, mSize.x(), mSize.y(), 0x0000FF33, 0x0000FF33);
         }
 
         trans.translate(off);