HEX: #74A8BE
RGB: (116,168,190)
#74A8BE contains mainly green and blue colors. Web safe color of #74A8BE is #6699CC (or #69C).
#74A8BE color RGB value is (116,168,190).
RGB: (116,168,190) (45%,66%,75%)
R 116 of 255 = 45%
G 168 of 255 = 66%
B 190 of 255 = 75%
R + G + B ~ 62%. #74A8BE is quite light color.
R + G + B =
116 + 168 + 190 = 474 (100%)
R 116 of 474 ~ 24.47%
G 168 of 474 ~ 35.44%
B 190 of 474 ~ 40.08%
#74A8BE color CMYK value is (39,12,0,25).
CMYK: (39,12,0,25) C39M12Y0K25 (39%,12%,0%,25%) (0.39/0.12/0.00/0.25)
74 | A8 | BE | |
---|---|---|---|
RGB | 116 | 168 | 190 |
HSL | 198° | 36.27% | 60.00% |
HSB/HSV | 198° | 38.95% | 74.51% |
CMYK | 38.95% | 11.58% | 0.00% |
25.49% |
HEX | 74 | A8 | BE |
Decimal | 116 | 168 | 190 |
Binary | 1110100 | 10101000 | 10111110 |
Octal | 164 | 250 | 276 |
Examples of css and html codes for elements with #74A8BE color. Also use rgb(116,168,190) instead hex code.
.myTextColor { color: #74A8BE; }
<p style="color:#74A8BE">This sample text font color is #74A8BE.</p>
This text font color is #74A8BE.
.myBgColor { background-color: #74A8BE; }
<div style="background-color:#74A8BE">Inner text</div>
This div background color is #74A8BE.
.myBorderColor { border: 1px solid #74A8BE; }
<div style="border:3px solid #74A8BE">Div</div>
This div border color is #74A8BE.
.myOpacity80 { color: #74A8BE; opacity: 0.8; }
<p style="color:#74A8BE;opacity:0.8;">80%</p>
Text with #74A8BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74A8BE;}
<p style="text-shadow: 3px 3px 1px #74A8BE">Text here.</p>
This text has shadow with #74A8BE color.
.textShadow {text-shadow: 3px 3px 1px #74A8BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74A8BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #74A8BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74A8BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74A8BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #74A8BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74A8BE; -webkit-box-shadow: 1px 1px 3px 2px #74A8BE; box-shadow: 1px 1px 3px 2px #74A8BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74A8BE; -webkit-box-shadow: 1px 1px 3px 2px #74A8BE; box-shadow:1px 1px 3px 2px #74A8BE;">
Div content here</div>
This text has color #74A8BE on black background.
This text has color #74A8BE on white background.
This text has black color on #74A8BE background.
This text has white color on #74A8BE background.