0

Noob question: How do I find out the default coloring (hex/rbg) directly from a browser inspector, if possible? @BoltClock♦'s answer to a similar question mentions "the about:blank technique" "to sniff out the default colors"--what exactly is that technique?

I'm trying to determine the default :focus blue border color for textarea using the Chrome developer tool. After some digging, I found outline-color: -webkit-focus-ring-color which isn't too useful... so I had to Google for the actual color (#5B9DD9 according to this). inspecting element on textarea for default color

Community
  • 1
  • 1
Yibo Yang
  • 2,353
  • 4
  • 27
  • 40

1 Answers1

0

Are you referring to the "inspect element" on chrome? Basically, you right click on the thing you want to find the coloring of, and select "inspect element".

Then a box will pop up with two boxes inside of it. Whatever html(div or text) you've got selected in the left box will have it's css properties appear in the right. You might have to scroll a little, if it doesn't appear right at the top. The color should be there.