-
I like the dark theme especially working at night/low light environment BUT for the schematic diagram view I'd like to see the original colors of the symbols, pins, and wires. We use a lot of custom symbols with color designations etc. Im no coder but I can follow if anybody can show me how... thanks! So basically dark theme everywhere except the schematic/sheet view window, if this is easier to accomplish |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Try commenting out the contents of this function in EasyEdaThemes/extension/main.js Lines 80 to 89 in aba3259 to this ///Sets the schematic editor theme
function setEditorTheme(themeData) { /*
api('doCommand', 'applyThemeUserDefine')
api('editorCall', {
cmd: 'setColors',
args: [{
activeTheme: 'user-define',
color: MAPPING(themeData)
}]}) */
} |
Beta Was this translation helpful? Give feedback.
Try commenting out the contents of this function in
main.js
, then reimport the extension with the edited file. It should prevent the editor from applying the custom schematic theme. Then, in EasyEda [View] -> [Theme] -> [Original Theme]EasyEdaThemes/extension/main.js
Lines 80 to 89 in aba3259
to this