Replace Bright Blue Font on D365FO

Replace Bright Blue Font on Dynamics 365 for Finance and Operations

  1. // ==UserScript==
  2. // @name Replace Bright Blue Font on D365FO
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Replace Bright Blue Font on Dynamics 365 for Finance and Operations
  6. // @author TerenceCK
  7. // @include https://*.operations.dynamics.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function addGlobalStyle(css) {
  12. var head, style;
  13. head = document.getElementsByTagName('head')[0];
  14. if (!head) { return; }
  15. style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = css;
  18. head.appendChild(style);
  19. }
  20. //change to below color
  21. addGlobalStyle(' .listCell.supportsNavigation input{ color:#00009f !important;}');
  22. addGlobalStyle(' .hidden{right:-1px;left:0}body{overflow:hidden;background-color:#f3f2f1}a{ color:#00009f ; text-decoration:none}a:hover{color:#005362}a:active{color:#005362}.iOSApp); }');
  23. addGlobalStyle(' .modulesFlyout-tile.tile[data-dyn-button-display=BackgroundImage].tile>.tile-text{ color:#00009f !important;}');
  24. addGlobalStyle(' .link-content-validLink{ color:#00009f !important;}');
  25. addGlobalStyle(' .anchorButton{display:-webkit-flex;display:flex}.anchorButton{ color:#00009f }');