HEX: #B4606C
RGB: (180,96,108)
#B4606C contains mainly red color. Web safe color of #B4606C is #CC6666 (or #C66).
#B4606C color RGB value is (180,96,108).
RGB: (180,96,108) (71%,38%,42%)
R 180 of 255 = 71%
G 96 of 255 = 38%
B 108 of 255 = 42%
R + G + B ~ 50%. #B4606C is middle color (not dark and not light).
R + G + B =
180 + 96 + 108 = 384 (100%)
R 180 of 384 ~ 46.88%
G 96 of 384 ~ 25%
B 108 of 384 ~ 28.13%
#B4606C color CMYK value is (0,47,40,29).
CMYK: (0,47,40,29) C0M47Y40K29 (0%,47%,40%,29%) (0.00/0.47/0.40/0.29)
B4 | 60 | 6C | |
---|---|---|---|
RGB | 180 | 96 | 108 |
HSL | 351° | 35.90% | 54.12% |
HSB/HSV | 351° | 46.67% | 70.59% |
CMYK | 0.00% | 46.67% | 40.00% |
29.41% |
HEX | B4 | 60 | 6C |
Decimal | 180 | 96 | 108 |
Binary | 10110100 | 1100000 | 1101100 |
Octal | 264 | 140 | 154 |
Examples of css and html codes for elements with #B4606C color. Also use rgb(180,96,108) instead hex code.
.myTextColor { color: #B4606C; }
<p style="color:#B4606C">This sample text font color is #B4606C.</p>
This text font color is #B4606C.
.myBgColor { background-color: #B4606C; }
<div style="background-color:#B4606C">Inner text</div>
This div background color is #B4606C.
.myBorderColor { border: 1px solid #B4606C; }
<div style="border:3px solid #B4606C">Div</div>
This div border color is #B4606C.
.myOpacity80 { color: #B4606C; opacity: 0.8; }
<p style="color:#B4606C;opacity:0.8;">80%</p>
Text with #B4606C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4606C;}
<p style="text-shadow: 3px 3px 1px #B4606C">Text here.</p>
This text has shadow with #B4606C color.
.textShadow {text-shadow: 3px 3px 1px #B4606C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4606C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4606C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4606C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4606C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4606C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4606C; -webkit-box-shadow: 1px 1px 3px 2px #B4606C; box-shadow: 1px 1px 3px 2px #B4606C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4606C; -webkit-box-shadow: 1px 1px 3px 2px #B4606C; box-shadow:1px 1px 3px 2px #B4606C;">
Div content here</div>
This text has color #B4606C on black background.
This text has color #B4606C on white background.
This text has black color on #B4606C background.
This text has white color on #B4606C background.