Dynamically lighten color on hover without sass

PHOTO EMBED

Wed Jun 30 2021 08:16:21 GMT+0000 (Coordinated Universal Time)

Saved by @hisam #css #hover

.button {
  color: #ff0000;
}

/* note: 100% is baseline 70% would be darker */
.button:hover {
  filter: brightness(125%);
}
content_copyCOPY