CSS Renkler - RGB ile Gri Renklerin Elde Edilmesi

Konuya git Çalıştır
     
<!DOCTYPE html>
<html>
<head>
<title>Sayfa başlığı</title>
</head>
<body>
<h2>RGB Renk Örneği</h2>

<h2 style="background-color:rgb(0, 0, 0);color:white">
 rgb(0,0,0) Kullanılarak elde edilen renk
</h2>

<h2 style="background-color:rgb(128, 128, 128);color:white">
rgb(128,128,128) Kullanılarak elde edilen renk
</h2>

<h2 style="background-color:rgb(255, 255, 255)">
rgb(255,255,255)Kullanılarak elde edilen renk
</h2>
</body> </html>