Hello guys, everything okay?
I’m not a programmer but I really want to change the default color in Photoshop, I noticed that the base color of the darkest preset is #323232.
Searching through the Photoshop files, I fall into the Required/UXP folder.
There is a file called “host-theme.css” and inside it there is all the code that supposedly changes the colors, I will forward it here:
@media(prefers-color-scheme: darkest){
:root{
/* P0 */
–uxp-host-background-color: #101010;
–uxp-host-text-color: #FFFFFF;
–uxp-host-border-color: #292929;
–uxp-host-link-text-color: #4B9CF5;
–uxp-host-widget-hover-background-color: #3D3D3D;
–uxp-host-widget-hover-text-color: #FFFFFF;
–uxp-host-widget-hover-border-color: #3D3D3D;
/* P1 */
--uxp-host-text-color-secondary: #9B9B9B;
--uxp-host-link-hover-text-color: #FFFFFF;
--uxp-host-label-text-color: #FFFFFF;
}
}
However, even if I change this color scheme, it doesn’t change anything in Photoshop, I just wanted to change this default color to a darker one, can you help me?