HEX: #6B95AF
RGB: (107,149,175)
#6B95AF contains mainly green and blue colors. Web safe color of #6B95AF is #669999 (or #699).
#6B95AF color RGB value is (107,149,175).
RGB: (107,149,175) (42%,58%,69%)
R 107 of 255 = 42%
G 149 of 255 = 58%
B 175 of 255 = 69%
R + G + B ~ 56%. #6B95AF is middle color (not dark and not light).
R + G + B =
107 + 149 + 175 = 431 (100%)
R 107 of 431 ~ 24.83%
G 149 of 431 ~ 34.57%
B 175 of 431 ~ 40.6%
#6B95AF color CMYK value is (39,15,0,31).
CMYK: (39,15,0,31) C39M15Y0K31 (39%,15%,0%,31%) (0.39/0.15/0.00/0.31)
6B | 95 | AF | |
---|---|---|---|
RGB | 107 | 149 | 175 |
HSL | 203° | 29.82% | 55.29% |
HSB/HSV | 203° | 38.86% | 68.63% |
CMYK | 38.86% | 14.86% | 0.00% |
31.37% |
HEX | 6B | 95 | AF |
Decimal | 107 | 149 | 175 |
Binary | 1101011 | 10010101 | 10101111 |
Octal | 153 | 225 | 257 |
Examples of css and html codes for elements with #6B95AF color. Also use rgb(107,149,175) instead hex code.
.myTextColor { color: #6B95AF; }
<p style="color:#6B95AF">This sample text font color is #6B95AF.</p>
This text font color is #6B95AF.
.myBgColor { background-color: #6B95AF; }
<div style="background-color:#6B95AF">Inner text</div>
This div background color is #6B95AF.
.myBorderColor { border: 1px solid #6B95AF; }
<div style="border:3px solid #6B95AF">Div</div>
This div border color is #6B95AF.
.myOpacity80 { color: #6B95AF; opacity: 0.8; }
<p style="color:#6B95AF;opacity:0.8;">80%</p>
Text with #6B95AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B95AF;}
<p style="text-shadow: 3px 3px 1px #6B95AF">Text here.</p>
This text has shadow with #6B95AF color.
.textShadow {text-shadow: 3px 3px 1px #6B95AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B95AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B95AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B95AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B95AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B95AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B95AF; -webkit-box-shadow: 1px 1px 3px 2px #6B95AF; box-shadow: 1px 1px 3px 2px #6B95AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B95AF; -webkit-box-shadow: 1px 1px 3px 2px #6B95AF; box-shadow:1px 1px 3px 2px #6B95AF;">
Div content here</div>
This text has color #6B95AF on black background.
This text has color #6B95AF on white background.
This text has black color on #6B95AF background.
This text has white color on #6B95AF background.