From 29233968911d19cc68c4b1fad0ecf2de6a0cd598 Mon Sep 17 00:00:00 2001 From: Yanis HAMOUDI <yanis.hamoudi@etu.u-pec.fr> Date: Sun, 2 Mar 2025 16:26:37 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20des=20styles=20des=20bou?= =?UTF-8?q?tons=20dans=20BakeTestRunner=20pour=20am=C3=A9liorer=20la=20lis?= =?UTF-8?q?ibilit=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fr/monlouyan/bakefile/tests/BakeTestRunner.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/fr/monlouyan/bakefile/tests/BakeTestRunner.java b/src/fr/monlouyan/bakefile/tests/BakeTestRunner.java index 25fc9db..2f2cfae 100644 --- a/src/fr/monlouyan/bakefile/tests/BakeTestRunner.java +++ b/src/fr/monlouyan/bakefile/tests/BakeTestRunner.java @@ -68,16 +68,16 @@ public class BakeTestRunner extends JFrame { compareSelectedButton = new JButton("Compare Selected Test"); // Styliser les boutons - runSelectedButton.setBackground(new Color(70, 130, 180)); // Steel Blue - runSelectedButton.setForeground(Color.WHITE); + runSelectedButton.setBackground(new Color(255, 255, 255)); // Steel Blue + runSelectedButton.setForeground(Color.BLACK); runSelectedButton.setFont(new Font("Dialog", Font.BOLD, 12)); - runAllButton.setBackground(new Color(60, 179, 113)); // Medium Sea Green - runAllButton.setForeground(Color.WHITE); + runAllButton.setBackground(new Color(255, 255, 255)); // Medium Sea Green + runAllButton.setForeground(Color.BLACK); runAllButton.setFont(new Font("Dialog", Font.BOLD, 12)); - compareSelectedButton.setBackground(new Color(30, 144, 255)); // Dodger Blue - compareSelectedButton.setForeground(Color.WHITE); + compareSelectedButton.setBackground(new Color(255, 255, 255)); // Dodger Blue + compareSelectedButton.setForeground(Color.BLACK); compareSelectedButton.setFont(new Font("Dialog", Font.BOLD, 12)); buttonPanel.add(runSelectedButton);