Visual Studio Code 在第 495 个颜色选择器之后停止制作颜色选择器

问题描述 投票:0回答:1

使用

<div>
制作 495
background-color
后,Visual Studio Code 不再提供颜色选择器。

颜色选择器有限制吗? Big Color Picker 是否会阻止我们获得太多的颜色选择器?

我希望它能够制作更多的颜色选择器。

example of missing color-pickers

html css visual-studio-code
1个回答
3
投票

是的,有 500 个颜色选择器的硬编码限制,以防止打开包含大量颜色的文件时出现性能问题。


可以使用以下用户设置覆盖它:

{
    // Controls the max number of color decorators that can be rendered in an editor at once.
    "editor.colorDecoratorsLimit": 999
}

默认值 500 可以在 Visual Studio Code 的默认设置页面找到。

© www.soinside.com 2019 - 2024. All rights reserved.