Skip to content

Instantly share code, notes, and snippets.

@jasonlong
Last active January 29, 2024 21:37
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jasonlong/4f3d2138544f3a761413 to your computer and use it in GitHub Desktop.
Save jasonlong/4f3d2138544f3a761413 to your computer and use it in GitHub Desktop.
Nicer Vimium link hint styling. What's Vimium? See http://vimium.github.io. This awesome yellow is courtesy of @mrmrs colors: http://clrs.cc.
/* To use this Vimium style in Chrome:
*
* 1. Go to Window > Extensions.
*
* 2. Find the Vimum extension and click the Options link.
*
* 3. Paste the code below in the box for "CSS for link hints".
*
*/
div > .vimiumHintMarker {
padding: 2px 3px;
background-color: #feda31;
border: 0;
border-radius: 2px;
box-shadow: inset 0 -2px 0 #b39922;
background-image: none;
}
div > .vimiumHintMarker span {
font-size: 11px;
font-weight: bold;
text-shadow: none;
color: #4a400e;
}
div > .vimiumHintMarker > .matchingCharacter {
color: #dcbc2a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment