For the complete documentation index, see llms.txt. This page is also available as Markdown.

The currentColor keyword

If we don't specify a color for a border, it will use the text's color by default. If we want to make this explicit, we can use the currentColor keyword:

.box {
  color: royalblue;
  border: 2px solid currentColor;
}

This keyword can be used anywhere a color can be used, not just with borders.

Last updated