I don't believe it would imply that, because those are independent elements. RGBA would still be stored as R, G, B, A unless you're considering each pixel as a single 32-bit integer. A C structure for the colors would even live in memory in the order you expect. Just like a string is still stored byte-by-byte even in little-endian contexts.
LE vs BE would only affect multi-byte integers and floats, not arrays or structures of single-byte elements.
LE vs BE would only affect multi-byte integers and floats, not arrays or structures of single-byte elements.