Monokai / monokai-pro-vscode

Issue tracking for Monokai Pro for Visual Studio Code
321 stars 8 forks source link

Fixed the highlight line (dividing line) of code cell in python file #400

Open idlesilver opened 3 months ago

idlesilver commented 3 months ago

The problem has be mentioned in https://github.com/Monokai/monokai-pro-vscode/issues/173#issue-577287699 and https://github.com/microsoft/vscode/issues/99425#issue-631358442. The reason is missing two color configuration: interactive.activeCodeBorder and interactive.inactiveCodeBorder. You can fix it by adding the following configuration in the setting file. The selected line highlight can be handled with editor.lineHighlightBorder

    "workbench.colorCustomizations": {
        "[Monokai*]": {
            "editor.lineHighlightBorder": "#c1c0c070",
            "interactive.activeCodeBorder": "#fcfcfad0",
            "interactive.inactiveCodeBorder": "#c1c0c0",
        }
    },

Here is how it looks

image

Monokai commented 2 months ago

fixed in 1.3.0