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