josean-dev / dev-environment-files

2.98k stars 800 forks source link

VS Code Theme #56

Open jsonwulff opened 7 months ago

jsonwulff commented 7 months ago

Hi Josean,

I just followed your YouTube video for setting up ZSH on my Mac, coming from bash. Thanks very much, it was very helpful. Since I also use VS Code's integrated terminal often I took my time and converted your color profile for ITerm into VS Code and I just wanted to share it with you or anyone using your theme.

For VS code settings.json

{
    "terminal.integrated.fontFamily": "MesloLGS NF",
    "workbench.colorCustomizations": {
        "terminal.background":"#010b17",
        "terminal.foreground":"#ebddf4",
        "terminal.ansiBlack":"#0b3b61",
        "terminal.ansiBrightBlack":"#62686c",
        "terminal.ansiBlue":"#1376f8",
        "terminal.ansiBrightBlue":"#378dfe",
        "terminal.ansiCyan":"#ff5dd4",
        "terminal.ansiBrightCyan":"#ff69d7",
        "terminal.ansiGreen":"#52ffcf",
        "terminal.ansiBrightGreen":"#73ffd8",
        "terminal.ansiMagenta":"#c792ea",
        "terminal.ansiBrightMagenta":"#ae81ff",
        "terminal.ansiRed":"#ff3a3a",
        "terminal.ansiBrightRed":"#ff54b0",
        "terminal.ansiYellow":"#fff383",
        "terminal.ansiBrightYellow":"#fcf4ad",
        "terminal.ansiWhite":"#15fca2",
        "terminal.ansiBrightWhite":"#5ffbbe",
    },
}