- Download & install Chrome
- Login & sync settings/whatever else
- General -> Use dark menu bar
- General -> Default web browser: Google Chrome
| select { | |
| -webkit-appearance: none; /* Webkit */ | |
| -moz-appearance: none; /* FF */ | |
| -ms-appearance: none; /* Edge */ | |
| appearance: none; /* Future */ | |
| /* Optional styles */ | |
| padding: 0.3em 1.5em 0.3em 0.6em; | |
| border: 1px solid currentColor; | |
| background: white; |
| function color_meter(cwith, ccolor) { | |
| if (!cwith && !ccolor) return; | |
| var _cwith = (cwith.charAt(0)=="#") ? cwith.substring(1,7) : cwith; | |
| var _ccolor = (ccolor.charAt(0)=="#") ? ccolor.substring(1,7) : ccolor; | |
| var _r = parseInt(_cwith.substring(0,2), 16); | |
| var _g = parseInt(_cwith.substring(2,4), 16); | |
| var _b = parseInt(_cwith.substring(4,6), 16); |