Last active
January 29, 2024 21:37
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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