android-app icon indicating copy to clipboard operation
android-app copied to clipboard

Annotation highlight too faint on e-ink

Open King-of-Infinite-Space opened this issue 3 years ago • 1 comments

The default highlight style in annotator.min.js is rgba(255,255,10,0.3), whick looks fine on LCD screen but is invisible on e-ink due to low contrast. The fix should be as simple as adding the following css to override it, something like rgba(0,255,0,0.4) helps. It would be great to have this option in the settings.

.annotator-hl {
  background: rgba(0,255,0,0.4) !important;
}

King-of-Infinite-Space avatar Dec 22 '21 19:12 King-of-Infinite-Space

Thanks for the suggestion! This can probably be a simple addition to the "e-ink" css file instead of an option (unless users with e-ink devices use other themes).

di72nn avatar Dec 23 '21 17:12 di72nn