=== modified file 'src/app/webcontainer/Chrome.qml'
--- src/app/webcontainer/Chrome.qml	2015-08-10 15:22:00 +0000
+++ src/app/webcontainer/Chrome.qml	2016-02-24 16:39:21 +0000
@@ -25,6 +25,7 @@
 
     property bool navigationButtonsVisible: false
     property bool accountSwitcher: false
+    property alias chromeTextLabelColor: chromeTextLabel.color
 
     signal chooseAccount()
 
@@ -90,6 +91,8 @@
         }
 
         Label {
+            id: chromeTextLabel
+
             anchors {
                 left: faviconContainer.right
                 right: reloadButton.left

=== modified file 'src/app/webcontainer/WebApp.qml'
--- src/app/webcontainer/WebApp.qml	2016-01-08 16:09:01 +0000
+++ src/app/webcontainer/WebApp.qml	2016-02-24 16:39:21 +0000
@@ -50,6 +50,7 @@
     property bool backForwardButtonsVisible: false
     property bool chromeVisible: false
     readonly property bool chromeless: !chromeVisible && !backForwardButtonsVisible && !accountSwitcher
+    readonly property real themeColorTextDarkenFactor: 3.0
 
     signal chooseAccount()
 
@@ -143,6 +144,8 @@
             onThemeColorMetaInformationDetected: {
                 if (!webapp.chromeless && chromeLoader.item) {
                     chromeLoader.item.backgroundColor = theme_color
+                    chromeLoader.item.chromeTextLabelColor =
+                            Qt.darker(theme_color, themeColorTextDarkenFactor)
                 }
             }
             onSamlRequestUrlPatternReceived: {

