HEX: #BED5AD
RGB: (190,213,173)
#BED5AD contains red, green and blue colors in about the same proportion. Web safe color of #BED5AD is #CCCC99 (or #CC9).
#BED5AD color RGB value is (190,213,173).
RGB: (190,213,173) (75%,84%,68%)
R 190 of 255 = 75%
G 213 of 255 = 84%
B 173 of 255 = 68%
R + G + B ~ 76%. #BED5AD is quite light color.
R + G + B =
190 + 213 + 173 = 576 (100%)
R 190 of 576 ~ 32.99%
G 213 of 576 ~ 36.98%
B 173 of 576 ~ 30.03%
#BED5AD color CMYK value is (11,0,19,16).
CMYK: (11,0,19,16) C11M0Y19K16 (11%,0%,19%,16%) (0.11/0.00/0.19/0.16)
BE | D5 | AD | |
---|---|---|---|
RGB | 190 | 213 | 173 |
HSL | 95° | 32.26% | 75.69% |
HSB/HSV | 95° | 18.78% | 83.53% |
CMYK | 10.80% | 0.00% | 18.78% |
16.47% |
HEX | BE | D5 | AD |
Decimal | 190 | 213 | 173 |
Binary | 10111110 | 11010101 | 10101101 |
Octal | 276 | 325 | 255 |
Examples of css and html codes for elements with #BED5AD color. Also use rgb(190,213,173) instead hex code.
.myTextColor { color: #BED5AD; }
<p style="color:#BED5AD">This sample text font color is #BED5AD.</p>
This text font color is #BED5AD.
.myBgColor { background-color: #BED5AD; }
<div style="background-color:#BED5AD">Inner text</div>
This div background color is #BED5AD.
.myBorderColor { border: 1px solid #BED5AD; }
<div style="border:3px solid #BED5AD">Div</div>
This div border color is #BED5AD.
.myOpacity80 { color: #BED5AD; opacity: 0.8; }
<p style="color:#BED5AD;opacity:0.8;">80%</p>
Text with #BED5AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BED5AD;}
<p style="text-shadow: 3px 3px 1px #BED5AD">Text here.</p>
This text has shadow with #BED5AD color.
.textShadow {text-shadow: 3px 3px 1px #BED5AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BED5AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BED5AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BED5AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BED5AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BED5AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BED5AD; -webkit-box-shadow: 1px 1px 3px 2px #BED5AD; box-shadow: 1px 1px 3px 2px #BED5AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BED5AD; -webkit-box-shadow: 1px 1px 3px 2px #BED5AD; box-shadow:1px 1px 3px 2px #BED5AD;">
Div content here</div>
This text has color #BED5AD on black background.
This text has color #BED5AD on white background.
This text has black color on #BED5AD background.
This text has white color on #BED5AD background.