HEX: #B5651D
RGB: (181,101,29)
#B5651D contains mainly red color. Web safe color of #B5651D is #CC6633 (or #C63).
#B5651D color RGB value is (181,101,29).
RGB: (181,101,29) (71%,40%,11%)
R 181 of 255 = 71%
G 101 of 255 = 40%
B 29 of 255 = 11%
R + G + B ~ 41%. #B5651D is middle color (not dark and not light).
R + G + B =
181 + 101 + 29 = 311 (100%)
R 181 of 311 ~ 58.2%
G 101 of 311 ~ 32.48%
B 29 of 311 ~ 9.32%
#B5651D color CMYK value is (0,44,84,29).
CMYK: (0,44,84,29) C0M44Y84K29 (0%,44%,84%,29%) (0.00/0.44/0.84/0.29)
B5 | 65 | 1D | |
---|---|---|---|
RGB | 181 | 101 | 29 |
HSL | 28° | 72.38% | 41.18% |
HSB/HSV | 28° | 83.98% | 70.98% |
CMYK | 0.00% | 44.20% | 83.98% |
29.02% |
HEX | B5 | 65 | 1D |
Decimal | 181 | 101 | 29 |
Binary | 10110101 | 1100101 | 11101 |
Octal | 265 | 145 | 35 |
Examples of css and html codes for elements with #B5651D color. Also use rgb(181,101,29) instead hex code.
.myTextColor { color: #B5651D; }
<p style="color:#B5651D">This sample text font color is #B5651D.</p>
This text font color is #B5651D.
.myBgColor { background-color: #B5651D; }
<div style="background-color:#B5651D">Inner text</div>
This div background color is #B5651D.
.myBorderColor { border: 1px solid #B5651D; }
<div style="border:3px solid #B5651D">Div</div>
This div border color is #B5651D.
.myOpacity80 { color: #B5651D; opacity: 0.8; }
<p style="color:#B5651D;opacity:0.8;">80%</p>
Text with #B5651D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5651D;}
<p style="text-shadow: 3px 3px 1px #B5651D">Text here.</p>
This text has shadow with #B5651D color.
.textShadow {text-shadow: 3px 3px 1px #B5651D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5651D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5651D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5651D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5651D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5651D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5651D; -webkit-box-shadow: 1px 1px 3px 2px #B5651D; box-shadow: 1px 1px 3px 2px #B5651D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5651D; -webkit-box-shadow: 1px 1px 3px 2px #B5651D; box-shadow:1px 1px 3px 2px #B5651D;">
Div content here</div>
This text has color #B5651D on black background.
This text has color #B5651D on white background.
This text has black color on #B5651D background.
This text has white color on #B5651D background.