Skip to content

Instantly share code, notes, and snippets.

@ToadKing
Created March 9, 2024 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ToadKing/f7f1c94a35bc0479c1b08f9d972b06f4 to your computer and use it in GitHub Desktop.
Save ToadKing/f7f1c94a35bc0479c1b08f9d972b06f4 to your computer and use it in GitHub Desktop.
/* ==UserStyle==
@name HIDIVE - Better Subtitle Outline/Stroke
@namespace com.toadking.hidive
@version 1.0.0
@description Better subtitle outline/stroke effect on HIDIVE
@author Toad King
@preprocessor default
@var color strokeColor "Outline/Stroke Color" black
@var number strokeWidth "Outline/Stroke width" [0.15, 0, 1, 0.01, 'em']
==/UserStyle== */
@-moz-document domain("hidive.com") {
body .ds-content-overlay .ds-text-track .ds-text-track__wrapper > * {
text-shadow: none !important;
-webkit-text-stroke: var(--strokeWidth) var(--strokeColor);
paint-order: stroke;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment