{
    "editor.tokenColorCustomizations": {
        "[Dark Modern]" : {
            "textMateRules": [
                {
                    // display excluded memory region attributes and input section flags in red
                    "scope": "source.excluded",
                    "settings": {
                        "foreground": "#D16969"
                    }
                },
                {
                    // render the '!' for excluding memory region attributes and input section flags in bold face
                    "scope": "source.excluded.operator",
                    "settings": {
                        "fontStyle": "bold"
                    }
                }
            ]
        },
        "[Light Modern]" : {
            "textMateRules": [
                {
                    // display excluded memory region attributes and input section flags in red
                    "scope": "source.excluded",
                    "settings": {
                        "foreground": "#CF222E"
                    }
                },
                {
                    // render the '!' for excluding memory region attributes and input section flags in bold face
                    "scope": "source.excluded.operator",
                    "settings": {
                        "fontStyle": "bold"
                    }
                }
            ]
        },
        "[Dark 2026]" : {
            "textMateRules": [
                {
                    // display excluded memory region attributes and input section flags in red
                    "scope": "source.excluded",
                    "settings": {
                        "foreground": "#FF7B72"
                    }
                },
                {
                    // render the '!' for excluding memory region attributes and input section flags in bold face
                    "scope": "source.excluded.operator",
                    "settings": {
                        "fontStyle": "bold"
                    }
                },
                {
                    // select a darker color for constants and file names to increase the contrast to symbols
                    "scope": ["source.constant.ld", "source.file"],
                    "settings": {
                        "foreground": "#4FC1FF"
                    }
                }
            ]
        },
        "[Light 2026]" : {
            "textMateRules": [
                {
                    // display excluded memory region attributes and input section flags in red
                    "scope": "source.excluded",
                    "settings": {
                        "foreground": "#CF222E"
                    }
                },
                {
                    // render the '!' for excluding memory region attributes and input section flags in bold face
                    "scope": "source.excluded.operator",
                    "settings": {
                        "fontStyle": "bold"
                    }
                },
                {
                    // select a lighter color for constants and file names to increase the contrast to symbols
                    "scope": ["source.constant.ld", "source.file"],
                    "settings": {
                        "foreground": "#0070C1"
                    }
                }
            ]
        },
        "[Default High Contrast]" : {
            "textMateRules": [
                {
                    // display excluded memory region attributes and input section flags in red
                    "scope": "source.excluded",
                    "settings": {
                        "foreground": "#D16969"
                    }
                },
                {
                    // render the '!' for excluding memory region attributes and input section flags in bold face
                    "scope": "source.excluded.operator",
                    "settings": {
                        "fontStyle": "bold"
                    }
                }
            ]
        },
        "[Default High Contrast Light]" : {
            "textMateRules": [
                {
                    // display excluded memory region attributes and input section flags in red
                    "scope": "source.excluded",
                    "settings": {
                        "foreground": "#B5200D"
                    }
                },
                {
                    // render the '!' for excluding memory region attributes and input section flags in bold face
                    "scope": "source.excluded.operator",
                    "settings": {
                        "fontStyle": "bold"
                    }
                }
            ]
        }
    }
}
