HEX: #B4638E
RGB: (180,99,142)
#B4638E contains mainly red and blue colors. Web safe color of #B4638E is #CC6699 (or #C69).
#B4638E color RGB value is (180,99,142).
RGB: (180,99,142) (71%,39%,56%)
R 180 of 255 = 71%
G 99 of 255 = 39%
B 142 of 255 = 56%
R + G + B ~ 55%. #B4638E is middle color (not dark and not light).
R + G + B =
180 + 99 + 142 = 421 (100%)
R 180 of 421 ~ 42.76%
G 99 of 421 ~ 23.52%
B 142 of 421 ~ 33.73%
#B4638E color CMYK value is (0,45,21,29).
CMYK: (0,45,21,29) C0M45Y21K29 (0%,45%,21%,29%) (0.00/0.45/0.21/0.29)
B4 | 63 | 8E | |
---|---|---|---|
RGB | 180 | 99 | 142 |
HSL | 328° | 35.06% | 54.71% |
HSB/HSV | 328° | 45.00% | 70.59% |
CMYK | 0.00% | 45.00% | 21.11% |
29.41% |
HEX | B4 | 63 | 8E |
Decimal | 180 | 99 | 142 |
Binary | 10110100 | 1100011 | 10001110 |
Octal | 264 | 143 | 216 |
Examples of css and html codes for elements with #B4638E color. Also use rgb(180,99,142) instead hex code.
.myTextColor { color: #B4638E; }
<p style="color:#B4638E">This sample text font color is #B4638E.</p>
This text font color is #B4638E.
.myBgColor { background-color: #B4638E; }
<div style="background-color:#B4638E">Inner text</div>
This div background color is #B4638E.
.myBorderColor { border: 1px solid #B4638E; }
<div style="border:3px solid #B4638E">Div</div>
This div border color is #B4638E.
.myOpacity80 { color: #B4638E; opacity: 0.8; }
<p style="color:#B4638E;opacity:0.8;">80%</p>
Text with #B4638E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4638E;}
<p style="text-shadow: 3px 3px 1px #B4638E">Text here.</p>
This text has shadow with #B4638E color.
.textShadow {text-shadow: 3px 3px 1px #B4638E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4638E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4638E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4638E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4638E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4638E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4638E; -webkit-box-shadow: 1px 1px 3px 2px #B4638E; box-shadow: 1px 1px 3px 2px #B4638E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4638E; -webkit-box-shadow: 1px 1px 3px 2px #B4638E; box-shadow:1px 1px 3px 2px #B4638E;">
Div content here</div>
This text has color #B4638E on black background.
This text has color #B4638E on white background.
This text has black color on #B4638E background.
This text has white color on #B4638E background.