我正在尝试创建一个看起来像这样的简单按钮-



JButton connectBtn = new JButton("Connect");
        Color blue = new Color(77,176,230);
        connectBtn.setBackground(blue);


但是问题在于背景蓝色颜色并不像它看起来的那样暗。

我已经尝试了以下所有可能性,但没有用:-(

connectBtn.setBackground(Color.blue);

connectBtn.setBackground(Color.BLUE.brighter());

connectBtn.setBackground(Color.decode("#0099cc"));//i tried simply #0099cc just to get any dark background


请帮助我将此颜色设置为JButton背景。
谢谢。

最佳答案

打印屏幕->绘画->颜色选择器告诉我按钮的颜色是

1691D9

要么
(22,145,217)

08-18 06:13