Greasy Fork is available in English.

Gab selection color fix - gab.com

Changes selected text and background colour, so it is readable

// ==UserScript==
// @name        Gab selection color fix - gab.com
// @namespace   Violentmonkey Scripts
// @match       https://gab.com/*
// @grant       none
// @version     0.0.1
// @author      diehardzg
// @description Changes selected text and background colour, so it is readable
// ==/UserScript==

var css = document.createElement("style");
css.innerHTML=`
  ::selection {
    color: #63da9d;
    background: black;
  }
`;
document.head.appendChild(css);