]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7242 Update default background color
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 4 Feb 2016 13:46:05 +0000 (14:46 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 4 Feb 2016 13:46:05 +0000 (14:46 +0100)
sonar-plugin-api/src/main/java/org/sonar/api/server/authentication/Display.java
sonar-plugin-api/src/test/java/org/sonar/api/server/authentication/DisplayTest.java

index 74ffc57ad6a693d14e3d0551ccfd8cf93e87a796..6931e72316908ed3a10f0781fcc9507dfbef9cb6 100644 (file)
@@ -58,7 +58,7 @@ public final class Display {
    * Background color for the provider button displayed in the login form.
    * It's a Hexadecimal value, for instance #205081.
    * <p/>
-   * If not provided, the default value is black (#000000)
+   * If not provided, the default value is #236a97
    */
   public String getBackgroundColor() {
     return backgroundColor;
@@ -71,7 +71,7 @@ public final class Display {
   public static class Builder {
 
     private String iconPath;
-    private String backgroundColor = "#000000";
+    private String backgroundColor = "#236a97";
 
     private Builder() {
     }
index 2b756383238c430414d433ff22c122363616e31b..b11b8946bb8bb8fc4e401d02a1296800e88f698a 100644 (file)
@@ -42,12 +42,12 @@ public class DisplayTest {
   }
 
   @Test
-  public void create_display_woth_default_background_color() throws Exception {
+  public void create_display_with_default_background_color() throws Exception {
     Display display = Display.builder()
       .setIconPath("/static/authgithub/github.svg")
       .build();
 
-    assertThat(display.getBackgroundColor()).isEqualTo("#000000");
+    assertThat(display.getBackgroundColor()).isEqualTo("#236a97");
   }
 
   @Test