HEX: #E16C3D
RGB: (225,108,61)
#E16C3D contains mainly red color. Web safe color of #E16C3D is #CC6633 (or #C63).
#E16C3D color RGB value is (225,108,61).
RGB: (225,108,61) (88%,42%,24%)
R 225 of 255 = 88%
G 108 of 255 = 42%
B 61 of 255 = 24%
R + G + B ~ 51%. #E16C3D is middle color (not dark and not light).
R + G + B =
225 + 108 + 61 = 394 (100%)
R 225 of 394 ~ 57.11%
G 108 of 394 ~ 27.41%
B 61 of 394 ~ 15.48%
#E16C3D color CMYK value is (0,52,73,12).
CMYK: (0,52,73,12) C0M52Y73K12 (0%,52%,73%,12%) (0.00/0.52/0.73/0.12)
E1 | 6C | 3D | |
---|---|---|---|
RGB | 225 | 108 | 61 |
HSL | 17° | 73.21% | 56.08% |
HSB/HSV | 17° | 72.89% | 88.24% |
CMYK | 0.00% | 52.00% | 72.89% |
11.76% |
HEX | E1 | 6C | 3D |
Decimal | 225 | 108 | 61 |
Binary | 11100001 | 1101100 | 111101 |
Octal | 341 | 154 | 75 |
Examples of css and html codes for elements with #E16C3D color. Also use rgb(225,108,61) instead hex code.
.myTextColor { color: #E16C3D; }
<p style="color:#E16C3D">This sample text font color is #E16C3D.</p>
This text font color is #E16C3D.
.myBgColor { background-color: #E16C3D; }
<div style="background-color:#E16C3D">Inner text</div>
This div background color is #E16C3D.
.myBorderColor { border: 1px solid #E16C3D; }
<div style="border:3px solid #E16C3D">Div</div>
This div border color is #E16C3D.
.myOpacity80 { color: #E16C3D; opacity: 0.8; }
<p style="color:#E16C3D;opacity:0.8;">80%</p>
Text with #E16C3D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E16C3D;}
<p style="text-shadow: 3px 3px 1px #E16C3D">Text here.</p>
This text has shadow with #E16C3D color.
.textShadow {text-shadow: 3px 3px 1px #E16C3D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E16C3D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E16C3D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E16C3D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E16C3D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E16C3D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E16C3D; -webkit-box-shadow: 1px 1px 3px 2px #E16C3D; box-shadow: 1px 1px 3px 2px #E16C3D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E16C3D; -webkit-box-shadow: 1px 1px 3px 2px #E16C3D; box-shadow:1px 1px 3px 2px #E16C3D;">
Div content here</div>
This text has color #E16C3D on black background.
This text has color #E16C3D on white background.
This text has black color on #E16C3D background.
This text has white color on #E16C3D background.