HEX: #B4826C
RGB: (180,130,108)
#B4826C contains mainly red and green colors. Web safe color of #B4826C is #CC9966 (or #C96).
#B4826C color RGB value is (180,130,108).
RGB: (180,130,108) (71%,51%,42%)
R 180 of 255 = 71%
G 130 of 255 = 51%
B 108 of 255 = 42%
R + G + B ~ 55%. #B4826C is middle color (not dark and not light).
R + G + B =
180 + 130 + 108 = 418 (100%)
R 180 of 418 ~ 43.06%
G 130 of 418 ~ 31.1%
B 108 of 418 ~ 25.84%
#B4826C color CMYK value is (0,28,40,29).
CMYK: (0,28,40,29) C0M28Y40K29 (0%,28%,40%,29%) (0.00/0.28/0.40/0.29)
B4 | 82 | 6C | |
---|---|---|---|
RGB | 180 | 130 | 108 |
HSL | 18° | 32.43% | 56.47% |
HSB/HSV | 18° | 40.00% | 70.59% |
CMYK | 0.00% | 27.78% | 40.00% |
29.41% |
HEX | B4 | 82 | 6C |
Decimal | 180 | 130 | 108 |
Binary | 10110100 | 10000010 | 1101100 |
Octal | 264 | 202 | 154 |
Examples of css and html codes for elements with #B4826C color. Also use rgb(180,130,108) instead hex code.
.myTextColor { color: #B4826C; }
<p style="color:#B4826C">This sample text font color is #B4826C.</p>
This text font color is #B4826C.
.myBgColor { background-color: #B4826C; }
<div style="background-color:#B4826C">Inner text</div>
This div background color is #B4826C.
.myBorderColor { border: 1px solid #B4826C; }
<div style="border:3px solid #B4826C">Div</div>
This div border color is #B4826C.
.myOpacity80 { color: #B4826C; opacity: 0.8; }
<p style="color:#B4826C;opacity:0.8;">80%</p>
Text with #B4826C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4826C;}
<p style="text-shadow: 3px 3px 1px #B4826C">Text here.</p>
This text has shadow with #B4826C color.
.textShadow {text-shadow: 3px 3px 1px #B4826C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4826C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4826C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4826C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4826C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4826C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4826C; -webkit-box-shadow: 1px 1px 3px 2px #B4826C; box-shadow: 1px 1px 3px 2px #B4826C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4826C; -webkit-box-shadow: 1px 1px 3px 2px #B4826C; box-shadow:1px 1px 3px 2px #B4826C;">
Div content here</div>
This text has color #B4826C on black background.
This text has color #B4826C on white background.
This text has black color on #B4826C background.
This text has white color on #B4826C background.