style.php açın style.css yerine onu koyun
<link rel="stylesheet" href="style.php">
<?php
header("Content-type: text/css"); // Tarayıcıya bu dosyanın CSS olduğunu bildirin

$color = '#ffff'; // Dinamik olarak ayarlanacak renk

?>

style.css içini direkt yapıştırın buraya
örnek;;
.search__close {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: <?php echo $color; ?>;
  cursor: pointer;
}