我想对 VS Code 安装的 CSS 进行一些更改,但当前的内置样式自定义点似乎不支持我想要进行的更改。所以基本上,我想自定义 VS Code 编辑器/工作台的 CSS / 在 VS Code 中拥有用户样式表。
这是我想要使用的CSS:
body::after {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(
rgba(18, 16, 16, 0) 50%,
rgba(0, 0, 0, 0.25) 50%
),
linear-gradient(
90deg,
rgba(255, 0, 0, 0.06),
rgba(0, 255, 0, 0.02),
rgba(0, 0, 255, 0.06)
);
z-index: 2;
background-size: 100% 2px, 3px 100%;
/* pointer-events: none; */
}
Run Code Online (Sandbox Code Playgroud)
我在 BetterDiscord 中看到了这个主题,并尝试在 VS Code 中执行相同的操作,但我不知道如何操作: Fallout …