@@ -41,7 +41,7 @@ public struct SwiftNEW: View {
4141 align: Binding < HorizontalAlignment > ? = . constant( . center) ,
4242 color: Binding < Color > ? = . constant( Color . accentColor) ,
4343 size: Binding < String > ? = . constant( " simple " ) ,
44- labelColor: Binding < Color > ? = . constant( Color ( UIColor . systemBackground ) ) ,
44+ labelColor: Binding < Color > ? = . constant( Color . primary ) ,
4545 label: Binding < String > ? = . constant( " Show Release Note " ) ,
4646 labelImage: Binding < String > ? = . constant( " arrow.up.circle.fill " ) ,
4747 history: Binding < Bool > ? = . constant( true ) ,
@@ -54,7 +54,7 @@ public struct SwiftNEW: View {
5454 _align = align ?? . constant( . center)
5555 _color = color ?? . constant( Color . accentColor)
5656 _size = size ?? . constant( " simple " )
57- _labelColor = labelColor ?? . constant( Color ( UIColor . systemBackground ) )
57+ _labelColor = labelColor ?? . constant( Color . primary )
5858 _label = label ?? . constant( " Show Release Note " )
5959 _labelImage = labelImage ?? . constant( " arrow.up.circle.fill " )
6060 _history = history ?? . constant( true )
@@ -70,7 +70,7 @@ public struct SwiftNEW: View {
7070 align: Binding < HorizontalAlignment > ? = . constant( . center) ,
7171 color: Binding < Color > ? = . constant( Color . accentColor) ,
7272 size: Binding < String > ? = . constant( " simple " ) ,
73- labelColor: Binding < Color > ? = . constant( Color ( NSColor . windowBackgroundColor ) ) ,
73+ labelColor: Binding < Color > ? = . constant( Color . primary ) ,
7474 label: Binding < String > ? = . constant( " Show Release Note " ) ,
7575 labelImage: Binding < String > ? = . constant( " arrow.up.circle.fill " ) ,
7676 history: Binding < Bool > ? = . constant( true ) ,
@@ -83,7 +83,7 @@ public struct SwiftNEW: View {
8383 _align = align ?? . constant( . center)
8484 _color = color ?? . constant( Color . accentColor)
8585 _size = size ?? . constant( " simple " )
86- _labelColor = labelColor ?? . constant( Color ( NSColor . windowBackgroundColor ) )
86+ _labelColor = labelColor ?? . constant( Color . primary )
8787 _label = label ?? . constant( " Show Release Note " )
8888 _labelImage = labelImage ?? . constant( " arrow.up.circle.fill " )
8989 _history = history ?? . constant( true )
@@ -99,7 +99,7 @@ public struct SwiftNEW: View {
9999 align: Binding < HorizontalAlignment > ? = . constant( . center) ,
100100 color: Binding < Color > ? = . constant( Color . accentColor) ,
101101 size: Binding < String > ? = . constant( " simple " ) ,
102- labelColor: Binding < Color > ? = . constant( Color . white ) ,
102+ labelColor: Binding < Color > ? = . constant( Color . primary ) ,
103103 label: Binding < String > ? = . constant( " Show Release Note " ) ,
104104 labelImage: Binding < String > ? = . constant( " arrow.up.circle.fill " ) ,
105105 history: Binding < Bool > ? = . constant( true ) ,
@@ -112,7 +112,7 @@ public struct SwiftNEW: View {
112112 _align = align ?? . constant( . center)
113113 _color = color ?? . constant( Color . accentColor)
114114 _size = size ?? . constant( " simple " )
115- _labelColor = labelColor ?? . constant( Color . white )
115+ _labelColor = labelColor ?? . constant( Color . primary )
116116 _label = label ?? . constant( " Show Release Note " )
117117 _labelImage = labelImage ?? . constant( " arrow.up.circle.fill " )
118118 _history = history ?? . constant( true )
0 commit comments