HEX: #BDAE5D
RGB: (189,174,93)
#BDAE5D contains mainly red and green colors. Web safe color of #BDAE5D is #CC9966 (or #C96).
#BDAE5D color RGB value is (189,174,93).
RGB: (189,174,93) (74%,68%,36%)
R 189 of 255 = 74%
G 174 of 255 = 68%
B 93 of 255 = 36%
R + G + B ~ 59%. #BDAE5D is middle color (not dark and not light).
R + G + B =
189 + 174 + 93 = 456 (100%)
R 189 of 456 ~ 41.45%
G 174 of 456 ~ 38.16%
B 93 of 456 ~ 20.39%
#BDAE5D color CMYK value is (0,8,51,26).
CMYK: (0,8,51,26) C0M8Y51K26 (0%,8%,51%,26%) (0.00/0.08/0.51/0.26)
BD | AE | 5D | |
---|---|---|---|
RGB | 189 | 174 | 93 |
HSL | 51° | 42.11% | 55.29% |
HSB/HSV | 51° | 50.79% | 74.12% |
CMYK | 0.00% | 7.94% | 50.79% |
25.88% |
HEX | BD | AE | 5D |
Decimal | 189 | 174 | 93 |
Binary | 10111101 | 10101110 | 1011101 |
Octal | 275 | 256 | 135 |
Examples of css and html codes for elements with #BDAE5D color. Also use rgb(189,174,93) instead hex code.
.myTextColor { color: #BDAE5D; }
<p style="color:#BDAE5D">This sample text font color is #BDAE5D.</p>
This text font color is #BDAE5D.
.myBgColor { background-color: #BDAE5D; }
<div style="background-color:#BDAE5D">Inner text</div>
This div background color is #BDAE5D.
.myBorderColor { border: 1px solid #BDAE5D; }
<div style="border:3px solid #BDAE5D">Div</div>
This div border color is #BDAE5D.
.myOpacity80 { color: #BDAE5D; opacity: 0.8; }
<p style="color:#BDAE5D;opacity:0.8;">80%</p>
Text with #BDAE5D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDAE5D;}
<p style="text-shadow: 3px 3px 1px #BDAE5D">Text here.</p>
This text has shadow with #BDAE5D color.
.textShadow {text-shadow: 3px 3px 1px #BDAE5D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDAE5D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDAE5D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDAE5D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDAE5D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDAE5D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDAE5D; -webkit-box-shadow: 1px 1px 3px 2px #BDAE5D; box-shadow: 1px 1px 3px 2px #BDAE5D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDAE5D; -webkit-box-shadow: 1px 1px 3px 2px #BDAE5D; box-shadow:1px 1px 3px 2px #BDAE5D;">
Div content here</div>
This text has color #BDAE5D on black background.
This text has color #BDAE5D on white background.
This text has black color on #BDAE5D background.
This text has white color on #BDAE5D background.