HEX: #B698AD
RGB: (182,152,173)
#B698AD contains red, green and blue colors in about the same proportion. Web safe color of #B698AD is #CC9999 (or #C99).
#B698AD color RGB value is (182,152,173).
RGB: (182,152,173) (71%,60%,68%)
R 182 of 255 = 71%
G 152 of 255 = 60%
B 173 of 255 = 68%
R + G + B ~ 66%. #B698AD is quite light color.
R + G + B =
182 + 152 + 173 = 507 (100%)
R 182 of 507 ~ 35.9%
G 152 of 507 ~ 29.98%
B 173 of 507 ~ 34.12%
#B698AD color CMYK value is (0,16,5,29).
CMYK: (0,16,5,29) C0M16Y5K29 (0%,16%,5%,29%) (0.00/0.16/0.05/0.29)
B6 | 98 | AD | |
---|---|---|---|
RGB | 182 | 152 | 173 |
HSL | 318° | 17.05% | 65.49% |
HSB/HSV | 318° | 16.48% | 71.37% |
CMYK | 0.00% | 16.48% | 4.95% |
28.63% |
HEX | B6 | 98 | AD |
Decimal | 182 | 152 | 173 |
Binary | 10110110 | 10011000 | 10101101 |
Octal | 266 | 230 | 255 |
Examples of css and html codes for elements with #B698AD color. Also use rgb(182,152,173) instead hex code.
.myTextColor { color: #B698AD; }
<p style="color:#B698AD">This sample text font color is #B698AD.</p>
This text font color is #B698AD.
.myBgColor { background-color: #B698AD; }
<div style="background-color:#B698AD">Inner text</div>
This div background color is #B698AD.
.myBorderColor { border: 1px solid #B698AD; }
<div style="border:3px solid #B698AD">Div</div>
This div border color is #B698AD.
.myOpacity80 { color: #B698AD; opacity: 0.8; }
<p style="color:#B698AD;opacity:0.8;">80%</p>
Text with #B698AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B698AD;}
<p style="text-shadow: 3px 3px 1px #B698AD">Text here.</p>
This text has shadow with #B698AD color.
.textShadow {text-shadow: 3px 3px 1px #B698AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B698AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B698AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B698AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B698AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B698AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B698AD; -webkit-box-shadow: 1px 1px 3px 2px #B698AD; box-shadow: 1px 1px 3px 2px #B698AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B698AD; -webkit-box-shadow: 1px 1px 3px 2px #B698AD; box-shadow:1px 1px 3px 2px #B698AD;">
Div content here</div>
This text has color #B698AD on black background.
This text has color #B698AD on white background.
This text has black color on #B698AD background.
This text has white color on #B698AD background.