HEX: #D88A63
RGB: (216,138,99)
#D88A63 contains mainly red color. Web safe color of #D88A63 is #CC9966 (or #C96).
#D88A63 color RGB value is (216,138,99).
RGB: (216,138,99) (85%,54%,39%)
R 216 of 255 = 85%
G 138 of 255 = 54%
B 99 of 255 = 39%
R + G + B ~ 59%. #D88A63 is middle color (not dark and not light).
R + G + B =
216 + 138 + 99 = 453 (100%)
R 216 of 453 ~ 47.68%
G 138 of 453 ~ 30.46%
B 99 of 453 ~ 21.85%
#D88A63 color CMYK value is (0,36,54,15).
CMYK: (0,36,54,15) C0M36Y54K15 (0%,36%,54%,15%) (0.00/0.36/0.54/0.15)
D8 | 8A | 63 | |
---|---|---|---|
RGB | 216 | 138 | 99 |
HSL | 20° | 60.00% | 61.76% |
HSB/HSV | 20° | 54.17% | 84.71% |
CMYK | 0.00% | 36.11% | 54.17% |
15.29% |
HEX | D8 | 8A | 63 |
Decimal | 216 | 138 | 99 |
Binary | 11011000 | 10001010 | 1100011 |
Octal | 330 | 212 | 143 |
Examples of css and html codes for elements with #D88A63 color. Also use rgb(216,138,99) instead hex code.
.myTextColor { color: #D88A63; }
<p style="color:#D88A63">This sample text font color is #D88A63.</p>
This text font color is #D88A63.
.myBgColor { background-color: #D88A63; }
<div style="background-color:#D88A63">Inner text</div>
This div background color is #D88A63.
.myBorderColor { border: 1px solid #D88A63; }
<div style="border:3px solid #D88A63">Div</div>
This div border color is #D88A63.
.myOpacity80 { color: #D88A63; opacity: 0.8; }
<p style="color:#D88A63;opacity:0.8;">80%</p>
Text with #D88A63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D88A63;}
<p style="text-shadow: 3px 3px 1px #D88A63">Text here.</p>
This text has shadow with #D88A63 color.
.textShadow {text-shadow: 3px 3px 1px #D88A63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D88A63, 5px 5px 20px red">Text here.</p>
This text has shadow with #D88A63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D88A63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D88A63, Direction=45, Strength=4)">Text</p>
This text has shadow with #D88A63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D88A63; -webkit-box-shadow: 1px 1px 3px 2px #D88A63; box-shadow: 1px 1px 3px 2px #D88A63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D88A63; -webkit-box-shadow: 1px 1px 3px 2px #D88A63; box-shadow:1px 1px 3px 2px #D88A63;">
Div content here</div>
This text has color #D88A63 on black background.
This text has color #D88A63 on white background.
This text has black color on #D88A63 background.
This text has white color on #D88A63 background.