HEX: #74BE99
RGB: (116,190,153)
#74BE99 contains mainly green and blue colors. Web safe color of #74BE99 is #66CC99 (or #6C9).
#74BE99 color RGB value is (116,190,153).
RGB: (116,190,153) (45%,75%,60%)
R 116 of 255 = 45%
G 190 of 255 = 75%
B 153 of 255 = 60%
R + G + B ~ 60%. #74BE99 is middle color (not dark and not light).
R + G + B =
116 + 190 + 153 = 459 (100%)
R 116 of 459 ~ 25.27%
G 190 of 459 ~ 41.39%
B 153 of 459 ~ 33.33%
#74BE99 color CMYK value is (39,0,19,25).
CMYK: (39,0,19,25) C39M0Y19K25 (39%,0%,19%,25%) (0.39/0.00/0.19/0.25)
74 | BE | 99 | |
---|---|---|---|
RGB | 116 | 190 | 153 |
HSL | 150° | 36.27% | 60.00% |
HSB/HSV | 150° | 38.95% | 74.51% |
CMYK | 38.95% | 0.00% | 19.47% |
25.49% |
HEX | 74 | BE | 99 |
Decimal | 116 | 190 | 153 |
Binary | 1110100 | 10111110 | 10011001 |
Octal | 164 | 276 | 231 |
Examples of css and html codes for elements with #74BE99 color. Also use rgb(116,190,153) instead hex code.
.myTextColor { color: #74BE99; }
<p style="color:#74BE99">This sample text font color is #74BE99.</p>
This text font color is #74BE99.
.myBgColor { background-color: #74BE99; }
<div style="background-color:#74BE99">Inner text</div>
This div background color is #74BE99.
.myBorderColor { border: 1px solid #74BE99; }
<div style="border:3px solid #74BE99">Div</div>
This div border color is #74BE99.
.myOpacity80 { color: #74BE99; opacity: 0.8; }
<p style="color:#74BE99;opacity:0.8;">80%</p>
Text with #74BE99 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74BE99;}
<p style="text-shadow: 3px 3px 1px #74BE99">Text here.</p>
This text has shadow with #74BE99 color.
.textShadow {text-shadow: 3px 3px 1px #74BE99, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74BE99, 5px 5px 20px red">Text here.</p>
This text has shadow with #74BE99 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74BE99, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74BE99, Direction=45, Strength=4)">Text</p>
This text has shadow with #74BE99 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74BE99; -webkit-box-shadow: 1px 1px 3px 2px #74BE99; box-shadow: 1px 1px 3px 2px #74BE99; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74BE99; -webkit-box-shadow: 1px 1px 3px 2px #74BE99; box-shadow:1px 1px 3px 2px #74BE99;">
Div content here</div>
This text has color #74BE99 on black background.
This text has color #74BE99 on white background.
This text has black color on #74BE99 background.
This text has white color on #74BE99 background.