@@ -131,21 +131,21 @@ struct SettingsWindowView: View {
131131 . fill (
132132 LinearGradient (
133133 colors: [
134- Color . accentColor . opacity ( 0.22 ) ,
135- Color . accentColor . opacity ( 0.08 )
134+ SpeedChrome . brand . opacity ( 0.22 ) ,
135+ SpeedChrome . brand . opacity ( 0.08 )
136136 ] ,
137137 startPoint: . topLeading,
138138 endPoint: . bottomTrailing
139139 )
140140 )
141141 . overlay (
142142 RoundedRectangle ( cornerRadius: 18 , style: . continuous)
143- . stroke ( Color . accentColor . opacity ( 0.12 ) , lineWidth: 1 )
143+ . stroke ( SpeedChrome . brand . opacity ( 0.12 ) , lineWidth: 1 )
144144 )
145145
146146 Image ( systemName: " speedometer " )
147147 . font ( . system( size: 26 , weight: . semibold) )
148- . foregroundStyle ( Color . accentColor )
148+ . foregroundStyle ( SpeedChrome . brand )
149149 }
150150 . frame ( width: 64 , height: 64 )
151151
@@ -246,7 +246,7 @@ struct SettingsWindowView: View {
246246 HStack ( spacing: 6 ) {
247247 Image ( systemName: appController. automaticTestInterval == . off ? " pause.circle.fill " : " clock.fill " )
248248 . foregroundStyle (
249- appController. automaticTestInterval == . off ? Color . secondary : Color . accentColor
249+ appController. automaticTestInterval == . off ? Color . secondary : SpeedChrome . brand
250250 )
251251
252252 Text ( appController. automaticTestInterval. shortTitle ( using: appController. localization. strings) )
@@ -268,7 +268,7 @@ struct SettingsWindowView: View {
268268 private var updateToneColor : Color {
269269 switch appController. updateStatusTone {
270270 case . neutral:
271- . accentColor
271+ SpeedChrome . brand
272272 case . muted:
273273 . secondary
274274 case . informative:
0 commit comments