Created
April 25, 2025 13:50
-
-
Save aaronedev/f327c77463fe08adc65cbe019896d4d2 to your computer and use it in GitHub Desktop.
vimiumc browser extension styling
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
/* Hint markers - softer colors and nicer appearance */ | |
.LH { | |
background: linear-gradient(#190007, #150542) !important; | |
color: #00fff9 !important; | |
border: 2px solid #fd7cff !important; | |
border-radius: 6px !important; | |
} | |
/* Selected elements */ | |
.Flash { | |
box-shadow: 0 0 4px 2px rgba(65, 165, 87, 0.87) !important; | |
} | |
/* #find */ | |
/* Find bar styling */ | |
.r { | |
background: #444444 !important; | |
border: 1px solid #a80065 !important; | |
border-radius: 6px 6px 0 0 !important; | |
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important; | |
color: #a80065 !important; | |
} | |
.r.D { | |
background: #a80065 !important; | |
color: #ddd !important; | |
border-color: #3c4d61 !important; | |
} | |
::selection { | |
background: #a80065 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment