HEX: #89C7CC
RGB: (137,199,204)
#89C7CC contains mainly green and blue colors. Web safe color of #89C7CC is #99CCCC (or #9CC).
#89C7CC color RGB value is (137,199,204).
RGB: (137,199,204) (54%,78%,80%)
R 137 of 255 = 54%
G 199 of 255 = 78%
B 204 of 255 = 80%
R + G + B ~ 71%. #89C7CC is quite light color.
R + G + B =
137 + 199 + 204 = 540 (100%)
R 137 of 540 ~ 25.37%
G 199 of 540 ~ 36.85%
B 204 of 540 ~ 37.78%
#89C7CC color CMYK value is (33,2,0,20).
CMYK: (33,2,0,20) C33M2Y0K20 (33%,2%,0%,20%) (0.33/0.02/0.00/0.20)
89 | C7 | CC | |
---|---|---|---|
RGB | 137 | 199 | 204 |
HSL | 184° | 39.64% | 66.86% |
HSB/HSV | 184° | 32.84% | 80.00% |
CMYK | 32.84% | 2.45% | 0.00% |
20.00% |
HEX | 89 | C7 | CC |
Decimal | 137 | 199 | 204 |
Binary | 10001001 | 11000111 | 11001100 |
Octal | 211 | 307 | 314 |
Examples of css and html codes for elements with #89C7CC color. Also use rgb(137,199,204) instead hex code.
.myTextColor { color: #89C7CC; }
<p style="color:#89C7CC">This sample text font color is #89C7CC.</p>
This text font color is #89C7CC.
.myBgColor { background-color: #89C7CC; }
<div style="background-color:#89C7CC">Inner text</div>
This div background color is #89C7CC.
.myBorderColor { border: 1px solid #89C7CC; }
<div style="border:3px solid #89C7CC">Div</div>
This div border color is #89C7CC.
.myOpacity80 { color: #89C7CC; opacity: 0.8; }
<p style="color:#89C7CC;opacity:0.8;">80%</p>
Text with #89C7CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #89C7CC;}
<p style="text-shadow: 3px 3px 1px #89C7CC">Text here.</p>
This text has shadow with #89C7CC color.
.textShadow {text-shadow: 3px 3px 1px #89C7CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #89C7CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #89C7CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#89C7CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#89C7CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #89C7CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #89C7CC; -webkit-box-shadow: 1px 1px 3px 2px #89C7CC; box-shadow: 1px 1px 3px 2px #89C7CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #89C7CC; -webkit-box-shadow: 1px 1px 3px 2px #89C7CC; box-shadow:1px 1px 3px 2px #89C7CC;">
Div content here</div>
This text has color #89C7CC on black background.
This text has color #89C7CC on white background.
This text has black color on #89C7CC background.
This text has white color on #89C7CC background.