diff --git a/src/Library/src/QuasarAppCreditsModule/ListViewer.qml b/src/Library/src/QuasarAppCreditsModule/ListViewer.qml
index f91b89b..282f9f7 100644
--- a/src/Library/src/QuasarAppCreditsModule/ListViewer.qml
+++ b/src/Library/src/QuasarAppCreditsModule/ListViewer.qml
@@ -39,7 +39,6 @@ ColumnLayout {
             text: modelData.text
             Layout.fillWidth: true
             horizontalAlignment: (modelData.align)? modelData.align : horizontalAlignment
-            color: (modelData.color && modelData.color.length)? modelData.color: color
             wrapMode: Text.WordWrap
 
             textFormat: TextEdit.MarkdownText
@@ -54,6 +53,13 @@ ColumnLayout {
                                    lableSource.ToolTip.hide()
                                }
                            }
+
+            property string colorPrivate: (modelData.color && modelData.color.length)? modelData.color: ""
+            onColorPrivateChanged: {
+                if (colorPrivate && colorPrivate.length) {
+                    lableSource.color = colorPrivate
+                }
+            }
         }
 
     }