How To Transfer Script Editor Colors From Roblox To Vs Code

So I have my custom set colors that I like in roblox studio now I am moving to vs code to script. How would I transfer those colors that I use in roblox studio to vs code.

To get the colors of the editor you have to go to settings

Paste this in your settings.json in VS Code and replace colors as you like.

"editor.tokenColorCustomizations": {
    "comments": "#828282", // --Comment
    "functions": "#af82ff", // function()
    "keywords": "#fa2372", // if then else end
    "numbers": "#dccd6e", // 1 2.3
    "strings": "#6eb423", // 'string'
    "types": "#73d7fa", // CFrame Vector3
    "variables": "#fafafa", // variable
    "textMateRules": [
        {
            "scope": "variable.other.constant.lua", // CONSTANT_VARIABLE
            "settings": {
                "foreground": "#fafafa"
            }
        },
        {
            "scope": "storage.modifier.local.lua", // local
            "settings": {
                "foreground": "#fa2372"
            }
        },
        {
            "scope": "keyword.operator.wordlike.lua", // not or
            "settings": {
                "foreground": "#fa2372"
            }
        },
        {
            "scope": "variable.language.self.lua", // self
            "settings": {
                "foreground": "#fa2372"
            }
        },
        {
            "scope": "variable.property.lua",
            "settings": {
                "foreground": "#73d7fa" // .Property
            }
        },
        {
            "scope": "source.lua", // , . < > _
            "settings": {
                "foreground": "#fa2372"
            }
        },
        {
            "scope": "keyword.operator.arithmetic.lua", // + - * /
            "settings": {
                "foreground": "#fa2372"
            }
        },
        {
            "scope": "keyword.operator.assignment.lua", // =
            "settings": {
                "foreground": "#fa2372"
            }
        },
        {
            "scope": "keyword.operator.comparison.lua", // ~=
            "settings": {
                "foreground": "#fa2372"
            }
        },
        {
            "scope": "constant.language.lua", // game workspace
            "settings": {
                "foreground": "#73d7fa"
            }
        },
        {
            "scope": "support.function.lua", // print math
            "settings": {
                "foreground": "#73d7fa"
            }
        },
        {
            "scope": "support.function.library.lua", // .clamp .floor
            "settings": {
                "foreground": "#73d7fa"
            }
        },
        {
            "scope": "variable.other.enummember.lua", // Enum.
            "settings": {
                "foreground": "#73d7fa"
            }
        },
        {
            "scope": "support.constant.lua", // math.pi
            "settings": {
                "foreground": "#73d7fa"
            }
        },
        {
            "scope": "constant.language.nil.lua", // nil
            "settings": {
                "foreground": "#fa963c"
            }
        },
        {
            "scope": "constant.language.boolean.true.lua", // true
            "settings": {
                "foreground": "#fa963c"
            }
        },
        {
            "scope": "constant.language.boolean.false.lua", // false
            "settings": {
                "foreground": "#fa963c"
            }
        },
    ]
},

You have settings in both apps just change them