Format | Color |
---|---|
RGB | 157, 203, 117 |
CMY | 0.3843, 0.2039, 0.5412 |
HSV | 92°, 42%, 80% |
CIELab | 77, -30.048, 38.023 |
XYZ | 38.4714, 51.1643, 24.6777 |
RYB | 117, 203, 163 |
Decimal | 10341237 |
Format | Color |
---|---|
Hex | 9DCB75 |
CMYK | 0.23, 0.00, 0.42, 0.20 |
HSL | 92°, 45%, 63% |
CIELCh | 77, 48.463, 128.317 |
Yxy | 51.1643, 0.3365, 0.4476 |
Android (android.graphics.Color) | 4288531317 (0xFF9DCB75) |
YUV | 179.4420, -30.7839, -19.6816 |
The HEX color 9DCB75 can be considered as a light color, the websafe version is hex 99CC66. A complement of this color would be D2ADFF and the grayscale version is B4B4B4.
A 20% lighter version of the original color is D5FFAA and 689543 is the 20% darker color. If you saturate the color by 10% you get 92CB61 and if you desaturate by 10% it is A8CB89.
These gradients show how the current color changes by changing the brightness by 10 percent. The first row shows a change by +10% for each color and the second row -10%.
Similar to the brightness gradients but the following show a change for the saturation by 10% instead.
The analogous color harmony consists of three colors that are next the each other on the color wheel.
The triadic color harmony groups three colors that are evenly spaced from another and form a triangle on the color wheel.
The complementary color scheme is a pair of colors which are on the opposite of each other on the color wheel.
Split-complementary colors differ from the complementary color scheme. The scheme consists of three colors, the original color and two neighbours of the complement color.
The square scheme is like the rectangle color scheme, but the four colors are evenly spaced on the color wheel.
The rectangle color scheme consists of four colors that form a rectangle on the color wheel.
This preview shows how the HEX color 9DCB75 looks on a white background.
This preview shows how the HEX color 9DCB75 looks on a black background.
This preview shows how black text looks on a background with the HEX color 9DCB75.
This preview shows how white text looks on a background with the HEX color 9DCB75.
The css property to change the color of a text is called "color". The color property can be set on classes,ids or directly on the html element .text, #text, p{ color:#9DCB75 }
.
This example shows how text in the color #9DCB75 looks like.
If you want to add a text shadow in that color use .shadow{ text-shadow: 4px 4px 2px #9DCB75 }
.
Here you see how black text with a 4 pixel #9DCB75 colored shadow looks like.
This example shows the color as border, it can be applied via the css property "border" or "border-color".
The css property to change the border of a element is called "border". The border property can be set on classes,ids or directly on the html element .border, #border, table{ border:4px solid #9DCB75 }
.
If only the border color should be changed .border{ border-color:#9DCB75 }
can be used.
Here you see how a box with a 4 pixel #9DCB75 colored shadow looks like.
If you want to add a box shadow in that color use .boxshadow{ -moz-box-shadow:4px 4px 4px 4px #9DCB75; -webkit-box-shadow:4px 4px 4px 4px #9DCB75; box-shadow:4px 4px 4px 4px #9DCB75 }
.
The css property to change the background color of a element is called "background". The background property can be set on classes,ids or directly on the html element .background, #background, body{ background:#9DCB75 }
.
If only the background color should be changed .background{ background-color:#9DCB75 }
can be used.
This example shows the color as background, it is applied via the css property "background".
Converting Colors allows you to convert between 10 different color formats (hex, rgb, cmy, cmyk, hsv, hsl, cielab, cielch, xyz, yxy).
To convert paste a string in one of these color formats, for example "9DCB75", into the input field and click on "Convert". The result will be shown in the section "Color Conversions", the following sections will provide you with further details on the color.
Some color formats use the same notation and the conversion will guess your format. As example if you try to convert the string "92°, 42%, 80%" it could be a HSV or HSL color, the conversion will assume HSL in this case.
As this could lead to wrong conversions you can define which format you are passing by wrapping your color string in brackets with the format in front. The search string "HSV(92°, 42%, 80%)" will give you the correct HSV color as there is no need to guess the format. Other examples would be "CIELAB(77, -30.048, 38.023)", "CIELCH(77, 48.463, 128.317)", "YXY(51.1643, 0.3365, 0.4476)" and "CMYK(0.23, 0.00, 0.42, 0.20)".