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