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);