Some old skins have unreadable right-click menus in recent Winamp. When you look further, you will see that it is not just the right-click menu: the Search label and the library info in the Media Library are not readable in those skins, either.
Take for example the right-click menu and Media Library of the
RazorEdge skin in the first picture. The right-click menu has light grey text on a light grey background and the Search label and the library info in the Media Library are also written in light grey on a light grey backround.
How to fix it?
First of all, raise the version number of WinampAbstractionLayer to 1.3 in skin.xml:
PHP Code:
<WinampAbstractionLayer version="1.3">
Then add the following color definitions to SystemColors.xml:
PHP Code:
<color id="wasabi.list.text.current" value="255,255,255"/>
<!-- from studio.list.item.selected.fg -->
<color id="wasabi.list.text.selected" value="255,255,255"/>
<!-- from studio.list.item.selected.fg -->
<color id="wasabi.list.text.selected.background" value="64,64,64"/>
<!-- from studio.list.item.selected -->
<color id="wasabi.window.background" value="127,127,127"/>
<color id="wasabi.window.text" value="255,255,255"/>
The values of the wasabi.list color definitions are take from the skin's studio.list.item color definitions.
The value of wasabi.window.text is the color of the Select and Query labels in Winamp 3 and wasabi.window.background is darkened for better readability.