HEX: #B45E53
RGB: (180,94,83)
#B45E53 contains mainly red color. Web safe color of #B45E53 is #CC6666 (or #C66).
#B45E53 color RGB value is (180,94,83).
RGB: (180,94,83) (71%,37%,33%)
R 180 of 255 = 71%
G 94 of 255 = 37%
B 83 of 255 = 33%
R + G + B ~ 47%. #B45E53 is middle color (not dark and not light).
R + G + B =
180 + 94 + 83 = 357 (100%)
R 180 of 357 ~ 50.42%
G 94 of 357 ~ 26.33%
B 83 of 357 ~ 23.25%
#B45E53 color CMYK value is (0,48,54,29).
CMYK: (0,48,54,29) C0M48Y54K29 (0%,48%,54%,29%) (0.00/0.48/0.54/0.29)
B4 | 5E | 53 | |
---|---|---|---|
RGB | 180 | 94 | 83 |
HSL | 7° | 39.27% | 51.57% |
HSB/HSV | 7° | 53.89% | 70.59% |
CMYK | 0.00% | 47.78% | 53.89% |
29.41% |
HEX | B4 | 5E | 53 |
Decimal | 180 | 94 | 83 |
Binary | 10110100 | 1011110 | 1010011 |
Octal | 264 | 136 | 123 |
Examples of css and html codes for elements with #B45E53 color. Also use rgb(180,94,83) instead hex code.
.myTextColor { color: #B45E53; }
<p style="color:#B45E53">This sample text font color is #B45E53.</p>
This text font color is #B45E53.
.myBgColor { background-color: #B45E53; }
<div style="background-color:#B45E53">Inner text</div>
This div background color is #B45E53.
.myBorderColor { border: 1px solid #B45E53; }
<div style="border:3px solid #B45E53">Div</div>
This div border color is #B45E53.
.myOpacity80 { color: #B45E53; opacity: 0.8; }
<p style="color:#B45E53;opacity:0.8;">80%</p>
Text with #B45E53 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B45E53;}
<p style="text-shadow: 3px 3px 1px #B45E53">Text here.</p>
This text has shadow with #B45E53 color.
.textShadow {text-shadow: 3px 3px 1px #B45E53, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B45E53, 5px 5px 20px red">Text here.</p>
This text has shadow with #B45E53 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B45E53, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B45E53, Direction=45, Strength=4)">Text</p>
This text has shadow with #B45E53 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B45E53; -webkit-box-shadow: 1px 1px 3px 2px #B45E53; box-shadow: 1px 1px 3px 2px #B45E53; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B45E53; -webkit-box-shadow: 1px 1px 3px 2px #B45E53; box-shadow:1px 1px 3px 2px #B45E53;">
Div content here</div>
This text has color #B45E53 on black background.
This text has color #B45E53 on white background.
This text has black color on #B45E53 background.
This text has white color on #B45E53 background.