Based on section 4.1 of the relevant Backgrounds and Borders Module spec, the initial border-color value is currentColor:
CSS Color Module – 4.4.
currentColorcolor keywordCSS1 and CSS2 defined the initial value of the
border-colorproperty to be the value of thecolorproperty but did not define a corresponding keyword. This omission was recognized by SVG, and thus SVG 1.0 introduced thecurrentColorvalue for thefill,stroke,stop-color,flood-color, andlighting-colorproperties.CSS3 extends the color value to include the
currentColorkeyword to allow its use with all properties that accept a <color> value. This simplifies the definition of those properties in CSS3.
In other words, the value is treated as the following in your case:
border: 4px solid currentColor;
Therefore you could also use the currentColor value for something such as the background-color property. For instance:
div {
color: red;
width: 100px;
height: 100px;
border: 4px solid;
background-color: currentColor;
}
<div></div>
Small fun fact, if you change the font color (e.g. :hover), the bordercolor changes with it! It also works well with transitions!