#efc075
این رنگ روشن است | متن روی بلوک دارای پس زمینه با این رنگ |
Hex | #efc075 |
RGB | ( 239 ,192 ,117 ) |
HSL | ( 36.89 , 0.79 , 0.7 ) |
برای رنگ پس زمینه از کلاس bgcolor و برای رنگ متن از کلاس forecolor و برای رنگ قاب دور المان ها از کلاس bordercolor استفاده کنید
<style> .bgcolor { background-color:#efc075; } .forecolor { color:#efc075; } .bordercolor { border:3px solid #efc075; } </style>
برای نوشتن یک متن با این رنگ می توانید از کد زیر استفاده کنید
<p style='color:#efc075'>متن دلخواه شما</p>
کد یک متن سایه دار با این رنگ
<p style='text-shadow: 4px 4px 2px rgba(239,192,117, 0.8);'>متن دلخواه سایه دار</p>
ایجاد یک محیط (div) با رنگ پس زمینه
<div style='background-color:#efc075'>محتوای محیط</div>
ایجاد یک (gradients) برای css3 با پشتیبانی انواع مرورگرها
background-color: #efc075;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efc075', endColorstr='#eaab47');background-image: -webkit-linear-gradient(top, #efc075, #eaab47);background-image: linear-gradient(to bottom, #efc075, #eaab47);