<html lang="en">
<head>
<title>How to Change Text Selection Color in CSS</title>
<style>
::selection{
color: green;
}
::selection{
color: green;
}
</style>
</head>
<body>
<h2>How to Change Text Selection Color in CSS</h2>
<p>Select this paragraph content to check the color.</p>
</body>
</html>