Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/*
* @module BetterCodeMirrorContrast.css
* @description Allows to make better CodeMirror contrats both light and dark themes
* @author BaRaN6161TURK
* @license CC-BY-SA 3.0
*/
/* Light theme */
.skin-fandomdesktop.theme-fandomdesktop-light .CodeMirror {
--codemirror-yellow: #665500;
--codemirror-light-blue: #005994;
--codemirror-blue: #0057A3;
--codemirror-green: #166600;
--codemirror-red: #993300;
--codemirror-dark-red: #AA1111;
--codemirror-purple: #8800CC;
--codemirror-pink: #990099;
--codemirror-light-gray: #545454;
--codemirror-gray: #455959;
}
/* Dark theme */
.skin-fandomdesktop.theme-fandomdesktop-dark .CodeMirror {
--codemirror-yellow: #ffd700;
--codemirror-light-blue: #adf;
--codemirror-blue: #42A7FF;
--codemirror-green: #29BD00;
--codemirror-red: #FF7A38;
--codemirror-dark-red: #ca1414;
--codemirror-purple: #D37AFF;
--codemirror-pink: #FF57FF;
--codemirror-gray: #89A4A4;
}