Greasy Fork is available in English.

Theme Fortuna

Theme Fortuna pour warframe.market

Versione datata 03/04/2020. Vedi la nuova versione l'ultima versione.

// ==UserScript==
// @name         Theme Fortuna
// @version      1.0
// @description  Theme Fortuna pour warframe.market
// @support     ( support me online in game on " /profile pierre314r ")
// @author       DEV314R
// @include        *warframe.market*
// @namespace https://greasyfork.org/users/467251
// ==/UserScript==
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);}
addGlobalStyle(".theme--dark, .theme--light ,root{\
    	    --color_place_order:#3969c0;\
    --color_place_order--hover: #db10db;\
   --color_place_order--active: #ff73e6;\
	       --color_link--active:#ff73e6;\
	        --color_link--hover:#ff73e6;\
	 --color_link_dimmed--hover:#ff73e6;\
--color_rgb_link_dimmed--active:#ff73e6;\
	          --color_dark_text:#ff73e6;\
	            --color_dark_h1:#ff73e6;\
	         --color_input_text:#ff73e6;\
--color_input_text--highlight:#db10db;\
          --color_border: #3969c0;\
	--color_border--light:#3969c0;\
             --color_link:#3969c0;\
               --color_h1:#3969c0;\
	           --color_h2:#3969c0;\
	           --color_h3:#3969c0;\
             --color_text:#3969c0;\
  --color_dark_disclaimer:#3969c0;\
	  --color_link_dimmed:#3969c0;\
  --color_rgb_link_dimmed:#3969c0;\
     --color_input_border:#3969c0;\
   --color_border--darker:#3969c0;\
         --color_background--light:#18032c;\
   --color_dark_background--darker:#18032c;\
	--color_input_group_background:#090322;\
--color_input_background--selected: #090322;\
                --color_background: #090322;\
         --color_background--darker:#090322;\
            --color_dark_background:#090322;\
          --color_place_order_text: #090322;\
      --color_rgb_background--light:#0000;\
                --color_button_text:#090322;\
	       --color_input_background:#090322;\
	 --color_dark_background--light:#090322;\
	        --color_price:#aaa9aa;\
--color_status-offline:#ce0000;\
	  --color_link_red:#ce0000;\
--color_status-online:#00bd00;\
--color_status-ingame:#ac84ff;\
--color_status-invis:#fff;\
	--color_placeholder:#f0f;\
	--color_buy:#00c67e;\
	--color_sell:#ff00a5;}"+
".filter__unit input[type=number]{color:#ff73e6;}");