sleepymalc / VSCode-LaTeX-Inkscape

✍️ A way to integrate LaTeX, VS Code, and Inkscape in macOS
https://pbb.wtf/posts/VSCode-LaTeX-Inkscape/
MIT License
364 stars 24 forks source link

May I ask the color theme of your VSCode? #2

Closed willcai7 closed 2 years ago

sleepymalc commented 2 years ago

Sure! The following is my VSCode setup. I think this is all I'm using. I basically set the color up by myself.

    //basic editor setup
    "workbench.colorTheme": "Community Material Theme Palenight",
    "workbench.startupEditor": "welcomePage",
    "workbench.colorCustomizations": {
        "terminal.foreground": "#c5a0cd",
        "terminal.background": "#393c55",
        "terminal.ansiBlack": "#79547d",
        "terminal.ansiBrightBlack": "#7b5b9d",
        "terminal.ansiBrightBlue": "#8d6aab",
        "terminal.ansiBlue": "#d58cb8",
        "sideBar.background": "#30326a74",
        "minimap.background": "#383c50cb"
    },

where the first configuration depends on the color theme from community Material Theme called Material Theme Palenight. This should be all the configurations to get the same theme.

willcai7 commented 2 years ago

Thank you!