tomviner / Bumble readable text

// ==UserScript==
// @name         Bumble readable text
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  make text readable
// @author       Tom V
// @license      MIT
// @match        https://bumble.com/app/connections
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    const css = '.message--in .message-bubble { color: #000 !important }';
    GM_addStyle(css);
})();