HEX: #00D5CB
RGB: (0,213,203)
#00D5CB contains only green and blue colors. Web safe color of #00D5CB is #00CCCC (or #0CC).
#00D5CB color RGB value is (0,213,203).
RGB: (0,213,203) (0%,84%,80%)
R 0 of 255 = 0%
G 213 of 255 = 84%
B 203 of 255 = 80%
R + G + B ~ 55%. #00D5CB is middle color (not dark and not light).
R + G + B =
0 + 213 + 203 = 416 (100%)
R 0 of 416 ~ 0%
G 213 of 416 ~ 51.2%
B 203 of 416 ~ 48.8%
#00D5CB color CMYK value is (100,0,5,16).
CMYK: (100,0,5,16) C100M0Y5K16 (100%,0%,5%,16%) (1.00/0.00/0.05/0.16)
00 | D5 | CB | |
---|---|---|---|
RGB | 0 | 213 | 203 |
HSL | 177° | 100.00% | 41.76% |
HSB/HSV | 177° | 100.00% | 83.53% |
CMYK | 100.00% | 0.00% | 4.69% |
16.47% |
HEX | 00 | D5 | CB |
Decimal | 0 | 213 | 203 |
Binary | 0 | 11010101 | 11001011 |
Octal | 0 | 325 | 313 |
Examples of css and html codes for elements with #00D5CB color. Also use rgb(0,213,203) instead hex code.
.myTextColor { color: #00D5CB; }
<p style="color:#00D5CB">This sample text font color is #00D5CB.</p>
This text font color is #00D5CB.
.myBgColor { background-color: #00D5CB; }
<div style="background-color:#00D5CB">Inner text</div>
This div background color is #00D5CB.
.myBorderColor { border: 1px solid #00D5CB; }
<div style="border:3px solid #00D5CB">Div</div>
This div border color is #00D5CB.
.myOpacity80 { color: #00D5CB; opacity: 0.8; }
<p style="color:#00D5CB;opacity:0.8;">80%</p>
Text with #00D5CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00D5CB;}
<p style="text-shadow: 3px 3px 1px #00D5CB">Text here.</p>
This text has shadow with #00D5CB color.
.textShadow {text-shadow: 3px 3px 1px #00D5CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00D5CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #00D5CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00D5CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00D5CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #00D5CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00D5CB; -webkit-box-shadow: 1px 1px 3px 2px #00D5CB; box-shadow: 1px 1px 3px 2px #00D5CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00D5CB; -webkit-box-shadow: 1px 1px 3px 2px #00D5CB; box-shadow:1px 1px 3px 2px #00D5CB;">
Div content here</div>
This text has color #00D5CB on black background.
This text has color #00D5CB on white background.
This text has black color on #00D5CB background.
This text has white color on #00D5CB background.