Browse Source

coding

Signed-off-by: Marino Faggiana <marino@marinofaggiana.com>
Marino Faggiana 2 years ago
parent
commit
188c04f759
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Widget/Toolbar/ToolbarWidgetView.swift

+ 2 - 1
Widget/Toolbar/ToolbarWidgetView.swift

@@ -102,10 +102,11 @@ struct ToolbarWidgetView: View {
 
 
                     Text(entry.footerText)
                     Text(entry.footerText)
                         .font(.caption2)
                         .font(.caption2)
+                        .foregroundColor(Color(NCBrandColor.shared.brand))
                         .padding(.trailing, 13.0)
                         .padding(.trailing, 13.0)
                 }
                 }
                 .frame(maxWidth: geo.size.width - 5, maxHeight: geo.size.height - 2, alignment: .bottomTrailing)
                 .frame(maxWidth: geo.size.width - 5, maxHeight: geo.size.height - 2, alignment: .bottomTrailing)
-            }.background(ContainerRelativeShape().fill(Color(.sRGB, red: 0.89, green: 0.89, blue: 0.89, opacity: 0.75)))
+            }.background(ContainerRelativeShape().fill(Color(.black)))
         }
         }
     }
     }
 }
 }