Format | Color |
---|---|
RGB | 0, 122, 89 |
CMY | 1.0000, 0.5216, 0.6510 |
HSV | 164°, 100%, 48% |
CIELab | 45, -37.648, 10.015 |
XYZ | 8.7627, 14.6403, 11.8152 |
RYB | 0, 71, 122 |
Decimal | 31321 |
Format | Color |
---|---|
Hex | 007A59 |
CMYK | 1.00, 0.00, 0.27, 0.52 |
HSL | 164°, 100%, 24% |
CIELCh | 45, 38.957, 165.103 |
Yxy | 14.6403, 0.2488, 0.4157 |
Android (android.graphics.Color) | 4278221401 (0xFF007A59) |
YUV | 81.7600, 3.5693, -71.7035 |
The ANDROID color 4278221401 can be considered as a dark color, the websafe version is hex 006633. A complement of this color would be 4288565628 and the grayscale version is 4283585106.
A 20% lighter version of the original color is 4283281291 and 4278208555 is the 20% darker color. If you saturate the color by 10% you get 4278221401 and if you desaturate by 10% it is 4279007836.
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%.
4278221401 | 4281308274 | 4283281291 | 4285123493 | 4287031233 | 4288872412 | 4290772985 | 4292673535 | 4294574079 | 4294967295 |
Similar to the brightness gradients but the following show a change for the saturation by 10% instead.
4278221401 | 4279007836 | 4279794272 | 4280646243 | 4281432678 | 4282219114 | 4283005549 | 4283791984 | 4284643955 | 4285430391 |
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.
The sweetspot groups the original color and five complimentary colors.
This preview shows how the ANDROID color 4278221401 looks on a white background.
This preview shows how the ANDROID color 4278221401 looks on a black background.
This preview shows how black text looks on a background with the ANDROID color 4278221401.
This preview shows how white text looks on a background with the ANDROID color 4278221401.
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:rgb(0, 122, 89) }
.
This example shows how text in the color rgb(0, 122, 89) looks like.
If you want to add a text shadow in that color use .shadow{ text-shadow: 4px 4px 2px rgb(0, 122, 89) }
.
Here you see how black text with a 4 pixel rgb(0, 122, 89) 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 rgb(0, 122, 89) }
.
If only the border color should be changed .border{ border-color:rgb(0, 122, 89) }
can be used.
Here you see how a box with a 4 pixel rgb(0, 122, 89) colored shadow looks like.
If you want to add a box shadow in that color use .boxshadow{ -moz-box-shadow:4px 4px 4px 4px rgb(0, 122, 89); -webkit-box-shadow:4px 4px 4px 4px rgb(0, 122, 89); box-shadow:4px 4px 4px 4px rgb(0, 122, 89) }
.
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:rgb(0, 122, 89) }
.
If only the background color should be changed .background{ background-color:rgb(0, 122, 89) }
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 "007A59", 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 "164°, 100%, 48%" 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(164°, 100%, 48%)" will give you the correct HSV color as there is no need to guess the format. Other examples would be "CIELAB(45, -37.648, 10.015)", "CIELCH(45, 38.957, 165.103)", "YXY(14.6403, 0.2488, 0.4157)" and "CMYK(1.00, 0.00, 0.27, 0.52)".