HEX: #B4958A
RGB: (180,149,138)
#B4958A contains red, green and blue colors in about the same proportion. Web safe color of #B4958A is #CC9999 (or #C99).
#B4958A color RGB value is (180,149,138).
RGB: (180,149,138) (71%,58%,54%)
R 180 of 255 = 71%
G 149 of 255 = 58%
B 138 of 255 = 54%
R + G + B ~ 61%. #B4958A is quite light color.
R + G + B =
180 + 149 + 138 = 467 (100%)
R 180 of 467 ~ 38.54%
G 149 of 467 ~ 31.91%
B 138 of 467 ~ 29.55%
#B4958A color CMYK value is (0,17,23,29).
CMYK: (0,17,23,29) C0M17Y23K29 (0%,17%,23%,29%) (0.00/0.17/0.23/0.29)
B4 | 95 | 8A | |
---|---|---|---|
RGB | 180 | 149 | 138 |
HSL | 16° | 21.88% | 62.35% |
HSB/HSV | 16° | 23.33% | 70.59% |
CMYK | 0.00% | 17.22% | 23.33% |
29.41% |
HEX | B4 | 95 | 8A |
Decimal | 180 | 149 | 138 |
Binary | 10110100 | 10010101 | 10001010 |
Octal | 264 | 225 | 212 |
Examples of css and html codes for elements with #B4958A color. Also use rgb(180,149,138) instead hex code.
.myTextColor { color: #B4958A; }
<p style="color:#B4958A">This sample text font color is #B4958A.</p>
This text font color is #B4958A.
.myBgColor { background-color: #B4958A; }
<div style="background-color:#B4958A">Inner text</div>
This div background color is #B4958A.
.myBorderColor { border: 1px solid #B4958A; }
<div style="border:3px solid #B4958A">Div</div>
This div border color is #B4958A.
.myOpacity80 { color: #B4958A; opacity: 0.8; }
<p style="color:#B4958A;opacity:0.8;">80%</p>
Text with #B4958A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4958A;}
<p style="text-shadow: 3px 3px 1px #B4958A">Text here.</p>
This text has shadow with #B4958A color.
.textShadow {text-shadow: 3px 3px 1px #B4958A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4958A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4958A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4958A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4958A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4958A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4958A; -webkit-box-shadow: 1px 1px 3px 2px #B4958A; box-shadow: 1px 1px 3px 2px #B4958A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4958A; -webkit-box-shadow: 1px 1px 3px 2px #B4958A; box-shadow:1px 1px 3px 2px #B4958A;">
Div content here</div>
This text has color #B4958A on black background.
This text has color #B4958A on white background.
This text has black color on #B4958A background.
This text has white color on #B4958A background.