I want to make some changes to the CSS of my VS Code installation, but it seems that the changes I want to make aren't supported by the current builtin style customization points. So basically, I want to customize the CSS of the VS Code editor/workbench / have userstylesheets in VS Code.
This is the CSS I want to use:
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; */
}
I saw this theme in BetterDiscord and trying to do the same in VS Code, but I dont know how: Fallout 4 Terminal
Resolved: VS Code custom theme