mbien commented on PR #7930:
URL: https://github.com/apache/netbeans/pull/7930#issuecomment-2462123972
> It does also use the colors from the actual component as input instead of
using a hardcoded value.
btw If you can't access the actual tab component, this might help to figure
out what the key is - if it has one:
```java
UIManager.getLookAndFeelDefaults().entrySet().stream()
.filter( t -> t.getValue() instanceof Color)
.sorted((o1, o2) ->
o1.getKey().toString().compareTo(o2.getKey().toString()))
.forEach(t -> System.out.println(t.getKey()+ ": " +
t.getValue()));
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists