HEX: #6AB4CD
RGB: (106,180,205)
#6AB4CD contains mainly green and blue colors. Web safe color of #6AB4CD is #66CCCC (or #6CC).
#6AB4CD color RGB value is (106,180,205).
RGB: (106,180,205) (42%,71%,80%)
R 106 of 255 = 42%
G 180 of 255 = 71%
B 205 of 255 = 80%
R + G + B ~ 64%. #6AB4CD is quite light color.
R + G + B =
106 + 180 + 205 = 491 (100%)
R 106 of 491 ~ 21.59%
G 180 of 491 ~ 36.66%
B 205 of 491 ~ 41.75%
#6AB4CD color CMYK value is (48,12,0,20).
CMYK: (48,12,0,20) C48M12Y0K20 (48%,12%,0%,20%) (0.48/0.12/0.00/0.20)
6A | B4 | CD | |
---|---|---|---|
RGB | 106 | 180 | 205 |
HSL | 195° | 49.75% | 60.98% |
HSB/HSV | 195° | 48.29% | 80.39% |
CMYK | 48.29% | 12.20% | 0.00% |
19.61% |
HEX | 6A | B4 | CD |
Decimal | 106 | 180 | 205 |
Binary | 1101010 | 10110100 | 11001101 |
Octal | 152 | 264 | 315 |
Examples of css and html codes for elements with #6AB4CD color. Also use rgb(106,180,205) instead hex code.
.myTextColor { color: #6AB4CD; }
<p style="color:#6AB4CD">This sample text font color is #6AB4CD.</p>
This text font color is #6AB4CD.
.myBgColor { background-color: #6AB4CD; }
<div style="background-color:#6AB4CD">Inner text</div>
This div background color is #6AB4CD.
.myBorderColor { border: 1px solid #6AB4CD; }
<div style="border:3px solid #6AB4CD">Div</div>
This div border color is #6AB4CD.
.myOpacity80 { color: #6AB4CD; opacity: 0.8; }
<p style="color:#6AB4CD;opacity:0.8;">80%</p>
Text with #6AB4CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6AB4CD;}
<p style="text-shadow: 3px 3px 1px #6AB4CD">Text here.</p>
This text has shadow with #6AB4CD color.
.textShadow {text-shadow: 3px 3px 1px #6AB4CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6AB4CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #6AB4CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6AB4CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6AB4CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #6AB4CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6AB4CD; -webkit-box-shadow: 1px 1px 3px 2px #6AB4CD; box-shadow: 1px 1px 3px 2px #6AB4CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6AB4CD; -webkit-box-shadow: 1px 1px 3px 2px #6AB4CD; box-shadow:1px 1px 3px 2px #6AB4CD;">
Div content here</div>
This text has color #6AB4CD on black background.
This text has color #6AB4CD on white background.
This text has black color on #6AB4CD background.
This text has white color on #6AB4CD background.