HEX: #BED599
RGB: (190,213,153)
#BED599 contains mainly red and green colors. Web safe color of #BED599 is #CCCC99 (or #CC9).
#BED599 color RGB value is (190,213,153).
RGB: (190,213,153) (75%,84%,60%)
R 190 of 255 = 75%
G 213 of 255 = 84%
B 153 of 255 = 60%
R + G + B ~ 73%. #BED599 is quite light color.
R + G + B =
190 + 213 + 153 = 556 (100%)
R 190 of 556 ~ 34.17%
G 213 of 556 ~ 38.31%
B 153 of 556 ~ 27.52%
#BED599 color CMYK value is (11,0,28,16).
CMYK: (11,0,28,16) C11M0Y28K16 (11%,0%,28%,16%) (0.11/0.00/0.28/0.16)
BE | D5 | 99 | |
---|---|---|---|
RGB | 190 | 213 | 153 |
HSL | 83° | 41.67% | 71.76% |
HSB/HSV | 83° | 28.17% | 83.53% |
CMYK | 10.80% | 0.00% | 28.17% |
16.47% |
HEX | BE | D5 | 99 |
Decimal | 190 | 213 | 153 |
Binary | 10111110 | 11010101 | 10011001 |
Octal | 276 | 325 | 231 |
Examples of css and html codes for elements with #BED599 color. Also use rgb(190,213,153) instead hex code.
.myTextColor { color: #BED599; }
<p style="color:#BED599">This sample text font color is #BED599.</p>
This text font color is #BED599.
.myBgColor { background-color: #BED599; }
<div style="background-color:#BED599">Inner text</div>
This div background color is #BED599.
.myBorderColor { border: 1px solid #BED599; }
<div style="border:3px solid #BED599">Div</div>
This div border color is #BED599.
.myOpacity80 { color: #BED599; opacity: 0.8; }
<p style="color:#BED599;opacity:0.8;">80%</p>
Text with #BED599 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BED599;}
<p style="text-shadow: 3px 3px 1px #BED599">Text here.</p>
This text has shadow with #BED599 color.
.textShadow {text-shadow: 3px 3px 1px #BED599, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BED599, 5px 5px 20px red">Text here.</p>
This text has shadow with #BED599 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BED599, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BED599, Direction=45, Strength=4)">Text</p>
This text has shadow with #BED599 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BED599; -webkit-box-shadow: 1px 1px 3px 2px #BED599; box-shadow: 1px 1px 3px 2px #BED599; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BED599; -webkit-box-shadow: 1px 1px 3px 2px #BED599; box-shadow:1px 1px 3px 2px #BED599;">
Div content here</div>
This text has color #BED599 on black background.
This text has color #BED599 on white background.
This text has black color on #BED599 background.
This text has white color on #BED599 background.