Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ltc
Partner - Creator
Partner - Creator

What are the HEX values for Qlik's Red(), Yellow(), Green() colors that can be used in expressions

What are the HEX values for Qlik's Red(), Yellow(), Green() colors that can be used in expressions?

I don't need the RGB values, I need the HEX values.

I'm using the Red(), Yellow(), and Green() default colors for one chart in an expression, but I'm also creating a master dimension with custom colors and want to use the same reds, yellows, greens.  When creating this master dimension, I have to enter the HEX value.  Cannot enter the RBG value there.

Does anyone have a crosswalk?  Thanks!

Labels (2)
1 Solution

Accepted Solutions
tm_burgers
Creator III
Creator III

red()  = HEX #800000; rgb(128,0,0)

green() = HEX #008000; rgb(0,128,0)

yellow() = HEX ##ffff00; rgb(255,255,0)

View solution in original post

6 Replies
m_woolf
Master II
Master II

You might want to download ColorPix: https://colorpix.en.softonic.com/
or Pixie: http://www.nattyware.com/pixie.php

tm_burgers
Creator III
Creator III

red()  = HEX #800000; rgb(128,0,0)

green() = HEX #008000; rgb(0,128,0)

yellow() = HEX ##ffff00; rgb(255,255,0)

ltc
Partner - Creator
Partner - Creator
Author

thank you!  this is what I need, but I need it for other colors as well.  Blue() and LightRed() are the other colors I need.  How did you find the HEX values?  I would like to know in case I need the HEX values for other colors in the future.  Thanks!

tm_burgers
Creator III
Creator III

I used the extension for Chrome browser called Eye Dropper

 

https://chrome.google.com/webstore/detail/eye-dropper/hmdcmlfkchdmnmnmheododdhjedfccka?hl=en

 

 

ltc
Partner - Creator
Partner - Creator
Author

nvm... i figured out I can google RGB to HEX conversion.  I am able to get the RGB's from the Qlik Help page: https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/ChartFunctions/...

 

Thank you!

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You can get the HEX value for any qlik color expression by wrapping it in Num() like this:

=num(LightBlue(), '(HEX)')

-Rob