HEX: #66997C
RGB: (102,153,124)
#66997C contains red, green and blue colors in about the same proportion. Web safe color of #66997C is #669966 (or #696).
#66997C color RGB value is (102,153,124).
RGB: (102,153,124) (40%,60%,49%)
R 102 of 255 = 40%
G 153 of 255 = 60%
B 124 of 255 = 49%
R + G + B ~ 50%. #66997C is middle color (not dark and not light).
R + G + B =
102 + 153 + 124 = 379 (100%)
R 102 of 379 ~ 26.91%
G 153 of 379 ~ 40.37%
B 124 of 379 ~ 32.72%
#66997C color CMYK value is (33,0,19,40).
CMYK: (33,0,19,40) C33M0Y19K40 (33%,0%,19%,40%) (0.33/0.00/0.19/0.40)
66 | 99 | 7C | |
---|---|---|---|
RGB | 102 | 153 | 124 |
HSL | 146° | 20.00% | 50.00% |
HSB/HSV | 146° | 33.33% | 60.00% |
CMYK | 33.33% | 0.00% | 18.95% |
40.00% |
HEX | 66 | 99 | 7C |
Decimal | 102 | 153 | 124 |
Binary | 1100110 | 10011001 | 1111100 |
Octal | 146 | 231 | 174 |
Examples of css and html codes for elements with #66997C color. Also use rgb(102,153,124) instead hex code.
.myTextColor { color: #66997C; }
<p style="color:#66997C">This sample text font color is #66997C.</p>
This text font color is #66997C.
.myBgColor { background-color: #66997C; }
<div style="background-color:#66997C">Inner text</div>
This div background color is #66997C.
.myBorderColor { border: 1px solid #66997C; }
<div style="border:3px solid #66997C">Div</div>
This div border color is #66997C.
.myOpacity80 { color: #66997C; opacity: 0.8; }
<p style="color:#66997C;opacity:0.8;">80%</p>
Text with #66997C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #66997C;}
<p style="text-shadow: 3px 3px 1px #66997C">Text here.</p>
This text has shadow with #66997C color.
.textShadow {text-shadow: 3px 3px 1px #66997C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #66997C, 5px 5px 20px red">Text here.</p>
This text has shadow with #66997C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#66997C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#66997C, Direction=45, Strength=4)">Text</p>
This text has shadow with #66997C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #66997C; -webkit-box-shadow: 1px 1px 3px 2px #66997C; box-shadow: 1px 1px 3px 2px #66997C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #66997C; -webkit-box-shadow: 1px 1px 3px 2px #66997C; box-shadow:1px 1px 3px 2px #66997C;">
Div content here</div>
This text has color #66997C on black background.
This text has color #66997C on white background.
This text has black color on #66997C background.
This text has white color on #66997C background.