The border-color Property

The color of the border can also be specified using HSL values:

A solid red border

A solid blue border

A solid grey border

The internal stylesheet embedded in the head of this page

<style>
p.one {
  border-style: solid;
  border-color: hsl(0, 100%, 50%); /* red */
}

p.two {
  border-style: solid;
  border-color: hsl(240, 100%, 50%); /* blue */
}

p.three {
  border-style: solid;
  border-color: hsl(0, 0%, 73%); /* grey */
}
</style>