HEX: #76DFDC
RGB: (118,223,220)
#76DFDC contains mainly green and blue colors. Web safe color of #76DFDC is #66CCCC (or #6CC).
#76DFDC color RGB value is (118,223,220).
RGB: (118,223,220) (46%,87%,86%)
R 118 of 255 = 46%
G 223 of 255 = 87%
B 220 of 255 = 86%
R + G + B ~ 73%. #76DFDC is quite light color.
R + G + B =
118 + 223 + 220 = 561 (100%)
R 118 of 561 ~ 21.03%
G 223 of 561 ~ 39.75%
B 220 of 561 ~ 39.22%
#76DFDC color CMYK value is (47,0,1,13).
CMYK: (47,0,1,13) C47M0Y1K13 (47%,0%,1%,13%) (0.47/0.00/0.01/0.13)
76 | DF | DC | |
---|---|---|---|
RGB | 118 | 223 | 220 |
HSL | 178° | 62.13% | 66.86% |
HSB/HSV | 178° | 47.09% | 87.45% |
CMYK | 47.09% | 0.00% | 1.35% |
12.55% |
HEX | 76 | DF | DC |
Decimal | 118 | 223 | 220 |
Binary | 1110110 | 11011111 | 11011100 |
Octal | 166 | 337 | 334 |
Examples of css and html codes for elements with #76DFDC color. Also use rgb(118,223,220) instead hex code.
.myTextColor { color: #76DFDC; }
<p style="color:#76DFDC">This sample text font color is #76DFDC.</p>
This text font color is #76DFDC.
.myBgColor { background-color: #76DFDC; }
<div style="background-color:#76DFDC">Inner text</div>
This div background color is #76DFDC.
.myBorderColor { border: 1px solid #76DFDC; }
<div style="border:3px solid #76DFDC">Div</div>
This div border color is #76DFDC.
.myOpacity80 { color: #76DFDC; opacity: 0.8; }
<p style="color:#76DFDC;opacity:0.8;">80%</p>
Text with #76DFDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76DFDC;}
<p style="text-shadow: 3px 3px 1px #76DFDC">Text here.</p>
This text has shadow with #76DFDC color.
.textShadow {text-shadow: 3px 3px 1px #76DFDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76DFDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #76DFDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76DFDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76DFDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #76DFDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76DFDC; -webkit-box-shadow: 1px 1px 3px 2px #76DFDC; box-shadow: 1px 1px 3px 2px #76DFDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76DFDC; -webkit-box-shadow: 1px 1px 3px 2px #76DFDC; box-shadow:1px 1px 3px 2px #76DFDC;">
Div content here</div>
This text has color #76DFDC on black background.
This text has color #76DFDC on white background.
This text has black color on #76DFDC background.
This text has white color on #76DFDC background.