<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.caret-example1 {
caret-color: transparent;
}
.caret-example2 {
caret-color: #1c87c9;
}
</style>
</head>
<body>
<h2>Caret-color property example</h2>
<input value="Default caret color">
<br>
<br>
<input class="caret-example1" value="Transparent caret color">
<br>
<br>
<input class="caret-example2" value="Custom caret color">
</body>
</html>