HEX: #B48DAE
RGB: (180,141,174)
#B48DAE contains red, green and blue colors in about the same proportion. Web safe color of #B48DAE is #CC9999 (or #C99).
#B48DAE color RGB value is (180,141,174).
RGB: (180,141,174) (71%,55%,68%)
R 180 of 255 = 71%
G 141 of 255 = 55%
B 174 of 255 = 68%
R + G + B ~ 65%. #B48DAE is quite light color.
R + G + B =
180 + 141 + 174 = 495 (100%)
R 180 of 495 ~ 36.36%
G 141 of 495 ~ 28.48%
B 174 of 495 ~ 35.15%
#B48DAE color CMYK value is (0,22,3,29).
CMYK: (0,22,3,29) C0M22Y3K29 (0%,22%,3%,29%) (0.00/0.22/0.03/0.29)
B4 | 8D | AE | |
---|---|---|---|
RGB | 180 | 141 | 174 |
HSL | 309° | 20.63% | 62.94% |
HSB/HSV | 309° | 21.67% | 70.59% |
CMYK | 0.00% | 21.67% | 3.33% |
29.41% |
HEX | B4 | 8D | AE |
Decimal | 180 | 141 | 174 |
Binary | 10110100 | 10001101 | 10101110 |
Octal | 264 | 215 | 256 |
Examples of css and html codes for elements with #B48DAE color. Also use rgb(180,141,174) instead hex code.
.myTextColor { color: #B48DAE; }
<p style="color:#B48DAE">This sample text font color is #B48DAE.</p>
This text font color is #B48DAE.
.myBgColor { background-color: #B48DAE; }
<div style="background-color:#B48DAE">Inner text</div>
This div background color is #B48DAE.
.myBorderColor { border: 1px solid #B48DAE; }
<div style="border:3px solid #B48DAE">Div</div>
This div border color is #B48DAE.
.myOpacity80 { color: #B48DAE; opacity: 0.8; }
<p style="color:#B48DAE;opacity:0.8;">80%</p>
Text with #B48DAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B48DAE;}
<p style="text-shadow: 3px 3px 1px #B48DAE">Text here.</p>
This text has shadow with #B48DAE color.
.textShadow {text-shadow: 3px 3px 1px #B48DAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B48DAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B48DAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B48DAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B48DAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B48DAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B48DAE; -webkit-box-shadow: 1px 1px 3px 2px #B48DAE; box-shadow: 1px 1px 3px 2px #B48DAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B48DAE; -webkit-box-shadow: 1px 1px 3px 2px #B48DAE; box-shadow:1px 1px 3px 2px #B48DAE;">
Div content here</div>
This text has color #B48DAE on black background.
This text has color #B48DAE on white background.
This text has black color on #B48DAE background.
This text has white color on #B48DAE background.