Get code from foregroundColor

Greetings to all!
How to get hex color code from foregroundColor in UXP?
in extendScript it works like this: alert(app.foregroundColor.rgb.hexValue);
Grateful!
Captura de tela 2022-11-17 172008

Should be pretty much the same

const app = require('photoshop').app
alert(app.foregroundColor.rgb.hexValue)

P. S. You might get an answer probably quicker, if you ask in the appropriate category :wink: Colors have nothing to do with UDT

1 Like

Iā€™ve already tried this method, but it returns ā€œANANANā€ if I donā€™t uncheck the ā€œOnly web colorā€ option, and thatā€™s not what I wanted.

My goal is to select a color using the standard color picker, copy the code and add it as the background color of a button whenever it is clicked.
1: The color does not return ā€œANANANā€;
2: No, the color of the button doesnā€™t change, maybe I didnā€™t concatenate the string correctly.
Any help is welcome.
script js:

 document.querySelector('#btnColor').style.background = "'#"+ app.foregroundColor.rgb.hexValue + "'";

What do you get in console with this?

console.log(app.foregroundColor.rgb)

retorna [obteject Obteject ]

Donā€™t alert, but console.log()
You should always use Dev Tools for debugging

1 Like

console.log(app.foregroundColor.rgb)
I canā€™t send a photo to this community

OK, sounds like a bug. Ping @kerrishotts maybe?

@Karmalakas once I get the code correct, what syntax is used to change the background color of this button document.querySelector(ā€˜#btnColorā€™).style.background = ???
I used this, but to no avail!

document.querySelector('#btnColor').style.background = "'#"+ app.foregroundColor.rgb.hexValue + "'";

Your hexValue already does have #, doesnā€™t it?

Yes, it already has #, + app.foregroundColor.rgb.hexValue in quotes ā€œ#corā€; am I wrong?

# + hexValue makes it ##111111 (note the double #)
As I said - console is your friend

Aslso not sure if you need to set bg including quotes like '#111111'. I think it should just be #111111

I did a test here with a defined color the background changed.

document.querySelector('#btnColor').style.background = "#33cc66";

Theoretically the syntax for my case would be:

style.background = "'#"+ app.foregroundColor.rgb.hexValue + "'";

But it returns an error:

As I said - your

style.background = "'#"+ app.foregroundColor.rgb.hexValue + "'";

Is the same as

style.background = "'##33cc66'";

See the quotes and #

It should be just

style.background = app.foregroundColor.rgb.hexValue;
1 Like

Iā€™ve done it this way and it didnā€™t work either:
document.querySelector(ā€˜#btnColorā€™).style.background = app.foregroundColor.rgb.hexValue;
I donā€™t know if itā€™s related to the buig corresponding to the topic, but I used the Only web color enabled function but without success.

I know this works because I believe you use it yourself in your panels.

In my plugin I only set foreground and background colors, but never read them. I just tried to get them properly and it works only when you just open Ps or reset colors to default. But as soon as you change the color, RGBColor is meesed up and no way to get value. There was a bug reported here months ago, but nobody saw it (again, ping @kerrishotts). It appears it is set correctly only if you check one of RGB values in the picker before selecting:

Also, you need to set backgroundColor instead of background

Having said above, until bug is fixed (hopefully sooner rather than later :crossed_fingers:), Iā€™d suggest using helper function to convert any other color to hex or just set directly (for example HSB). So you code would be:

const app = require('photoshop').app
document.querySelector('#btnColor').style.backgroundColor = `hsl(${app.foregroundColor.hsb.hue} ${app.foregroundColor.hsb.saturation}% ${app.foregroundColor.hsb.brightness}%)`;

Iā€™d prefer LAB, because lightness and brightness (HSL vs HSB) are a bit different, but seems like LAB in UXP CSS is also not supported :confused:

Iā€™ll also ping @amandah here just in case

@Karmalakas It was worth the insistence, now I see that it worked very well. Thank you for taking the time to help me, you saved my day. THANK YOU FOR SHARING YOUR KNOWLEDGE!

A post was split to a new topic: Button color doesnā€™t change when selected with picker

Stay tuned 4 bug fixes are now in review stage :slight_smile:

  1. preventing input out of range values which can result into e.g. invalid hex codeā€¦ can happen in 32bit color mode and in few other cases
  2. fixing the yellow color in CMYK mode
  3. fixing foreground and background color when you are not in RGB color mode
  4. the possibility of setting background color (now the setter is missing)
4 Likes

Also noticed this one while debugging RGB, but honestly, was too lazy to report right away :see_no_evil: :sweat_smile: