HEX: #BD829A
RGB: (189,130,154)
#BD829A contains red, green and blue colors in about the same proportion. Web safe color of #BD829A is #CC9999 (or #C99).
#BD829A color RGB value is (189,130,154).
RGB: (189,130,154) (74%,51%,60%)
R 189 of 255 = 74%
G 130 of 255 = 51%
B 154 of 255 = 60%
R + G + B ~ 62%. #BD829A is quite light color.
R + G + B =
189 + 130 + 154 = 473 (100%)
R 189 of 473 ~ 39.96%
G 130 of 473 ~ 27.48%
B 154 of 473 ~ 32.56%
#BD829A color CMYK value is (0,31,19,26).
CMYK: (0,31,19,26) C0M31Y19K26 (0%,31%,19%,26%) (0.00/0.31/0.19/0.26)
BD | 82 | 9A | |
---|---|---|---|
RGB | 189 | 130 | 154 |
HSL | 336° | 30.89% | 62.55% |
HSB/HSV | 336° | 31.22% | 74.12% |
CMYK | 0.00% | 31.22% | 18.52% |
25.88% |
HEX | BD | 82 | 9A |
Decimal | 189 | 130 | 154 |
Binary | 10111101 | 10000010 | 10011010 |
Octal | 275 | 202 | 232 |
Examples of css and html codes for elements with #BD829A color. Also use rgb(189,130,154) instead hex code.
.myTextColor { color: #BD829A; }
<p style="color:#BD829A">This sample text font color is #BD829A.</p>
This text font color is #BD829A.
.myBgColor { background-color: #BD829A; }
<div style="background-color:#BD829A">Inner text</div>
This div background color is #BD829A.
.myBorderColor { border: 1px solid #BD829A; }
<div style="border:3px solid #BD829A">Div</div>
This div border color is #BD829A.
.myOpacity80 { color: #BD829A; opacity: 0.8; }
<p style="color:#BD829A;opacity:0.8;">80%</p>
Text with #BD829A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BD829A;}
<p style="text-shadow: 3px 3px 1px #BD829A">Text here.</p>
This text has shadow with #BD829A color.
.textShadow {text-shadow: 3px 3px 1px #BD829A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BD829A, 5px 5px 20px red">Text here.</p>
This text has shadow with #BD829A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BD829A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BD829A, Direction=45, Strength=4)">Text</p>
This text has shadow with #BD829A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BD829A; -webkit-box-shadow: 1px 1px 3px 2px #BD829A; box-shadow: 1px 1px 3px 2px #BD829A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BD829A; -webkit-box-shadow: 1px 1px 3px 2px #BD829A; box-shadow:1px 1px 3px 2px #BD829A;">
Div content here</div>
This text has color #BD829A on black background.
This text has color #BD829A on white background.
This text has black color on #BD829A background.
This text has white color on #BD829A background.