Update theme docs: bookmarkedColor (yellow star) replaces favoritedColor

This commit is contained in:
pax 2026-04-05 01:48:18 -05:00
parent e84765a06f
commit 17daac26d9

View File

@ -220,12 +220,12 @@ QLabel {
}
```
### Thumbnail Indicator Dots
### Thumbnail Indicators
```css
ThumbnailWidget {
qproperty-savedColor: #22cc22; /* green dot: saved to library */
qproperty-favoritedColor: #ff4444; /* red dot: favorited but not saved */
qproperty-savedColor: #22cc22; /* green dot: saved to library */
qproperty-bookmarkedColor: #ffcc00; /* yellow star: bookmarked */
}
```
@ -245,5 +245,5 @@ ThumbnailWidget {
- `selection-background-color` on `QWidget` controls the **grid thumbnail selection highlight**
- Setting a custom QSS automatically switches to the Fusion Qt style for consistent rendering
- Tag category colors (Artist, Character, etc.) in the info panel are set in code, not via QSS
- Favorite/saved dots are QSS-controllable via `qproperty-savedColor` and `qproperty-favoritedColor` on `ThumbnailWidget`
- Saved dot (green) and bookmark star (yellow) are QSS-controllable via `qproperty-savedColor` and `qproperty-bookmarkedColor` on `ThumbnailWidget`
- Use `QLabel { background: transparent; }` to prevent labels from getting opaque backgrounds