SenshiSentou / sd-webui-state-manager

A state manager to quickly save and return to previous configs in A1111
MIT License
55 stars 6 forks source link

Dark Theme #6

Closed ZeusLT closed 5 months ago

ZeusLT commented 5 months ago

I am using Taithrah/Minimal theme for gradio: image

Minimized window looks fine: image Correction: Fields are still white and text is white as well: image

But on full screen it looks like this. Text is white on a white field, white background, buttons are not visible: image

Antivash commented 5 months ago

I am using Taithrah/Minimal theme for gradio: image

Minimized window looks fine: image Correction: Fields are still white and text is white as well: image

But on full screen it looks like this. Text is white on a white field, white background, buttons are not visible: image

The full panel's background color is on line 134 of the style.css

You can either edit it manually image image

or, as is probably the better option, add the following to your user.css in your a1111/forge/sdnext main folder, replacing #00f with whatever color:

.sd-webui-sm-modal-panel .sd-webui-sm-side-panel {
  background-color: #00f !important;
}

image image image

ZeusLT commented 5 months ago

I've pulled v2 and it seems to work properly, I only had to edit .sd-webui-sm-pill-toggle label and override white background for some of the fields, the rest seems fine, thanks.