Visual studio 有没有办法为visual studio 2015安装/导入升华/vscode颜色主题?

Visual studio 有没有办法为visual studio 2015安装/导入升华/vscode颜色主题?,visual-studio,visual-studio-code,visual-studio-2015,vs-color-theme-editor,Visual Studio,Visual Studio Code,Visual Studio 2015,Vs Color Theme Editor,我实际上是想得到一个颜色主题,我在VS2015的VS代码中使用。但主题是崇高的文本/原子。我找不到visual studio 2015的颜色主题 我在这里发现了这个问题 有没有办法将vs代码扩展安装或导入visual studio 2015?目前没有办法在这两种主题格式之间进行转换。VisualStudio使用专有的主题样式作为,而VisualStudio代码使用textmate主题作为 Visual Studio格式: <Color Name="CSS String Value"&

我实际上是想得到一个颜色主题,我在VS2015的VS代码中使用。但主题是崇高的文本/原子。我找不到visual studio 2015的颜色主题

我在这里发现了这个问题


有没有办法将vs代码扩展安装或导入visual studio 2015?

目前没有办法在这两种主题格式之间进行转换。VisualStudio使用专有的主题样式作为,而VisualStudio代码使用textmate主题作为

Visual Studio格式:

  <Color Name="CSS String Value">
    <Background Type="CT_AUTOMATIC" Source="00000000" />
    <Foreground Type="CT_RAW" Source="FFD69D85" />
  </Color>
  <Color Name="HTML Attribute">
    <Background Type="CT_AUTOMATIC" Source="00000000" />
    <Foreground Type="CT_RAW" Source="FF9CDCFE" />
  </Color>

Visual Studio代码

    <dict>
        <key>name</key>
        <string>Tag Inline Source</string>
        <key>scope</key>
        <string>meta.tag.inline source, text.html.php.source</string>
        <key>settings</key>
        <dict>
            <key>fontStyle</key>
            <string>
            </string>
            <key>foreground</key>
            <string>#9AA83A</string>
        </dict>
    </dict>
    <dict>
        <key>name</key>
        <string>Tag Other</string>
        <key>scope</key>
        <string>meta.tag.other, entity.name.tag.style, entity.name.tag.script, meta.tag.block.script, source.js.embedded punctuation.definition.tag.html, source.css.embedded punctuation.definition.tag.html</string>
        <key>settings</key>
        <dict>
            <key>fontStyle</key>
            <string>
            </string>
            <key>foreground</key>
            <string>#9872A2</string>
        </dict>
    </dict>
    <dict>
        <key>name</key>
        <string>Tag Attribute</string>
        <key>scope</key>
        <string>entity.other.attribute-name, meta.tag punctuation.definition.string</string>
        <key>settings</key>
        <dict>
            <key>fontStyle</key>
            <string>
            </string>
            <key>foreground</key>
            <string>#D0B344</string>
        </dict>
    </dict>

名称
标记内联源
范围
meta.tag.inline源代码,text.html.php.source
设置
方式
前景
#9AA83A
名称
标记其他
范围
meta.tag.other、entity.name.tag.style、entity.name.tag.script、meta.tag.block.script、source.js.embedded percentration.definition.tag.html、source.css.embedded percentration.definition.tag.html
设置
方式
前景
#9872A2
名称
标记属性
范围
entity.other.attribute-name,meta.tag标点符号.definition.string
设置
方式
前景
#D0B344

正如您所看到的,它们是非常不同的格式,不幸的是,没有在它们之间转换的工具。

奇怪的是,为一个应用程序设计的主题通常不能与另一个应用程序一起使用。因为它们是完全不同的应用程序。