HEX: #B596AD
RGB: (181,150,173)
#B596AD contains red, green and blue colors in about the same proportion. Web safe color of #B596AD is #CC9999 (or #C99).
#B596AD color RGB value is (181,150,173).
RGB: (181,150,173) (71%,59%,68%)
R 181 of 255 = 71%
G 150 of 255 = 59%
B 173 of 255 = 68%
R + G + B ~ 66%. #B596AD is quite light color.
R + G + B =
181 + 150 + 173 = 504 (100%)
R 181 of 504 ~ 35.91%
G 150 of 504 ~ 29.76%
B 173 of 504 ~ 34.33%
#B596AD color CMYK value is (0,17,4,29).
CMYK: (0,17,4,29) C0M17Y4K29 (0%,17%,4%,29%) (0.00/0.17/0.04/0.29)
B5 | 96 | AD | |
---|---|---|---|
RGB | 181 | 150 | 173 |
HSL | 315° | 17.32% | 64.90% |
HSB/HSV | 315° | 17.13% | 70.98% |
CMYK | 0.00% | 17.13% | 4.42% |
29.02% |
HEX | B5 | 96 | AD |
Decimal | 181 | 150 | 173 |
Binary | 10110101 | 10010110 | 10101101 |
Octal | 265 | 226 | 255 |
Examples of css and html codes for elements with #B596AD color. Also use rgb(181,150,173) instead hex code.
.myTextColor { color: #B596AD; }
<p style="color:#B596AD">This sample text font color is #B596AD.</p>
This text font color is #B596AD.
.myBgColor { background-color: #B596AD; }
<div style="background-color:#B596AD">Inner text</div>
This div background color is #B596AD.
.myBorderColor { border: 1px solid #B596AD; }
<div style="border:3px solid #B596AD">Div</div>
This div border color is #B596AD.
.myOpacity80 { color: #B596AD; opacity: 0.8; }
<p style="color:#B596AD;opacity:0.8;">80%</p>
Text with #B596AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B596AD;}
<p style="text-shadow: 3px 3px 1px #B596AD">Text here.</p>
This text has shadow with #B596AD color.
.textShadow {text-shadow: 3px 3px 1px #B596AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B596AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B596AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B596AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B596AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B596AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B596AD; -webkit-box-shadow: 1px 1px 3px 2px #B596AD; box-shadow: 1px 1px 3px 2px #B596AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B596AD; -webkit-box-shadow: 1px 1px 3px 2px #B596AD; box-shadow:1px 1px 3px 2px #B596AD;">
Div content here</div>
This text has color #B596AD on black background.
This text has color #B596AD on white background.
This text has black color on #B596AD background.
This text has white color on #B596AD background.