Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I create the opposite of a hexadecimal color? For example, I'd like to convert 0x000000 (black) into 0xFFFFFF (white), or 0xFF0000 (red) into 0x00FFFF (cyan). Those are rather basic colors, while variants of colors can have more complex hexadecimal values, such as 0x21B813 (greenish).

Are bitwise operators required for this? Maybe a loop of each digit to calculate it's mirror from 0 to 15, or 0 to F (0 become F, 6 becomes 9, etc.)

I'm using ActionScript, so I'm almost certain that this would be done the same way in Java.

share|improve this question
Updated example. The formats should all pad with zeroes correctly now but I've never used ActionScript/don't have an interpreter so it could be off slightly somewhere. – Matt Mitchell Jun 30 '10 at 2:58

2 Answers

up vote 5 down vote accepted

As Spidey says just use 0xFFFFFF - COLOR.

In ActionScript you would do something like:

public static function pad(str:String, minLength:uint, pad:String):String { 
    while (str.length < minLength) str = pad + str; 
    return str; 
} 

var color:Number=0x002233;
var hexColorStr:String = "#" + pad((0xFFFFFF-color).toString(16), 6, "0");

In Java:

int color = 0x002233;
String hex = String.format("06X", (0xFFFFFF - color)); 

In C#:

int color = 0x002233;
string hex = (0xFFFFFF - color).ToString("X").PadLeft(6, '0');
share|improve this answer

Just do 0xFFFFFF - COLOR.

share|improve this answer
1  
now i'm glad i didn't create a loop function. such an obvious solution you've pointed out. how embarrassing! :) – TheDarkIn1978 Jun 30 '10 at 2:59
Nah, it happens all the time. – Spidey May 3 '12 at 23:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.