HEX: #006666
RGB: (0,102,102)
#006666 contains only green and blue colors. #006666 color is web safe color. It maybe written shortly as #066.
#006666 color RGB value is (0,102,102).
RGB: (0,102,102)
(0%, 40%, 40%)
R 0 of 255 = 0%
G 102 of 255 = 40%
B 102 of 255 = 40%
R + G + B ~ 27%. #006666 is quite dark color.
R + G + B = 0 + 102 + 102 = 204 (100%)
R 0 of 204 ~ 0%
G 102 of 204 ~ 50%
B 102 of 204 ~ 50'%
#006666 color CMYK value is (100,0,0,60).
CMYK: (100,0,0,60)
C100M0Y0K60 (100%, 0%, 0%, 60%)
(1.00 / 0.00 / 0.00 / 0.60)
Color #006666 in popluar color models
00 | 66 | 66 | |
---|---|---|---|
RGB | 0 | 102 | 102 |
HSL | 180° | 100.00% | 20.00% |
HSB/HSV | 180° | 100.00% | 40.00% |
CMYK | 100.00% | 0.00% | 0.00% |
60.00% |
Color #006666 in popluar number systems.
HEX | 00 | 66 | 66 |
Decimal | 0 | 102 | 102 |
Binary | 0 | 1100110 | 1100110 |
Octal | 0 | 146 | 146 |
Shades of #006666
Tints of #006666
Examples of css and html codes for elements with #006666 color. Also use rgb(0,102,102) instead hex code.
.myTextColor { color: #006666; }
<p style="color:#006666">This sample text font color is #006666.</p>
This text font color is #006666.
.myBgColor { background-color: #006666; }
<div style="background-color:#006666">Inner text</div>
This div background color is #006666.
.myBorderColor { border: 1px solid #006666; }
<div style="border:3px solid #006666">Div</div>
This div border color is #006666.
.myOpacity80 { color: #006666; opacity: 0.8; }
<p style="color:#006666;opacity:0.8;">80%</p>
Text with #006666 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #006666;}
<p style="text-shadow: 3px 3px 1px #006666">Text here.</p>
This text has shadow with #006666 color.
.textShadow {text-shadow: 3px 3px 1px #006666', 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #006666, 5px 5px 20px red">Text here.</p>
This text has shadow with #006666 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#006666, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#006666, Direction=45, Strength=4)">Text</p>
This text has shadow with #006666 and red colors in old Internet Explorer.
/* css code */
.divShadow
{
-moz-box-shadow: 1px 1px 3px 2px #006666;
-webkit-box-shadow: 1px 1px 3px 2px #006666;
box-shadow: 1px 1px 3px 2px #006666;
}
/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #006666; -webkit-box-shadow: 1px 1px 3px 2px #006666; box-shadow:1px 1px 3px 2px #006666;">
Div content here
</div>
This text has color #006666 on black background.
This text has color #006666 on white background.
This text has black color on #006666 background.
This text has white color on #006666 background.