I have a little problem getting certain values contained in the themes of flatlaf, I'll give you an example, the value of "@accentBase2Color" return null and i don't understand why because the theme contain this key (sry for my bad english).
public static void main(String[] args) throws UnsupportedLookAndFeelException {
UIManager.setLookAndFeel(flatLaf);
Color obj = UIManager.getColor("@accentBaseColor");
System.out.println(obj);
}
@accentBase2Color exist only in the theme file so it is unreachable from the UIManager. You can use the following code to reach every UIManager key/color attribut, I think the color you want to find is stored in "Object.pink" or "Object.purple" for exemple.