HEX: #CE6D5E
RGB: (206,109,94)
#CE6D5E contains mainly red color. Web safe color of #CE6D5E is #CC6666 (or #C66).
#CE6D5E color RGB value is (206,109,94).
RGB: (206,109,94) (81%,43%,37%)
R 206 of 255 = 81%
G 109 of 255 = 43%
B 94 of 255 = 37%
R + G + B ~ 54%. #CE6D5E is middle color (not dark and not light).
R + G + B =
206 + 109 + 94 = 409 (100%)
R 206 of 409 ~ 50.37%
G 109 of 409 ~ 26.65%
B 94 of 409 ~ 22.98%
#CE6D5E color CMYK value is (0,47,54,19).
CMYK: (0,47,54,19) C0M47Y54K19 (0%,47%,54%,19%) (0.00/0.47/0.54/0.19)
CE | 6D | 5E | |
---|---|---|---|
RGB | 206 | 109 | 94 |
HSL | 8° | 53.33% | 58.82% |
HSB/HSV | 8° | 54.37% | 80.78% |
CMYK | 0.00% | 47.09% | 54.37% |
19.22% |
HEX | CE | 6D | 5E |
Decimal | 206 | 109 | 94 |
Binary | 11001110 | 1101101 | 1011110 |
Octal | 316 | 155 | 136 |
Examples of css and html codes for elements with #CE6D5E color. Also use rgb(206,109,94) instead hex code.
.myTextColor { color: #CE6D5E; }
<p style="color:#CE6D5E">This sample text font color is #CE6D5E.</p>
This text font color is #CE6D5E.
.myBgColor { background-color: #CE6D5E; }
<div style="background-color:#CE6D5E">Inner text</div>
This div background color is #CE6D5E.
.myBorderColor { border: 1px solid #CE6D5E; }
<div style="border:3px solid #CE6D5E">Div</div>
This div border color is #CE6D5E.
.myOpacity80 { color: #CE6D5E; opacity: 0.8; }
<p style="color:#CE6D5E;opacity:0.8;">80%</p>
Text with #CE6D5E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CE6D5E;}
<p style="text-shadow: 3px 3px 1px #CE6D5E">Text here.</p>
This text has shadow with #CE6D5E color.
.textShadow {text-shadow: 3px 3px 1px #CE6D5E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CE6D5E, 5px 5px 20px red">Text here.</p>
This text has shadow with #CE6D5E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CE6D5E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CE6D5E, Direction=45, Strength=4)">Text</p>
This text has shadow with #CE6D5E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CE6D5E; -webkit-box-shadow: 1px 1px 3px 2px #CE6D5E; box-shadow: 1px 1px 3px 2px #CE6D5E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CE6D5E; -webkit-box-shadow: 1px 1px 3px 2px #CE6D5E; box-shadow:1px 1px 3px 2px #CE6D5E;">
Div content here</div>
This text has color #CE6D5E on black background.
This text has color #CE6D5E on white background.
This text has black color on #CE6D5E background.
This text has white color on #CE6D5E background.