diff --git a/Onyx/ColorSettingsView.swift b/Onyx/ColorSettingsView.swift index eddefaf..59e1be2 100644 --- a/Onyx/ColorSettingsView.swift +++ b/Onyx/ColorSettingsView.swift @@ -42,8 +42,16 @@ struct ColorSettingsView: View { Spacer(minLength: 0) } + // Mit dem Farbfleck daneben: welche Farbe das System gerade + // führt, weiß man nicht auswendig — und dann wirkt das + // Ergebnis wie ein Fehler statt wie eine Übernahme. Button { theme.adoptSystemAccent() } label: { - Text("color.adoptSystem") + HStack(spacing: 6) { + Text("color.adoptSystem") + Circle() + .fill(Color(nsColor: .controlAccentColor)) + .frame(width: 11, height: 11) + } } Text("color.accent.hint") .font(.caption).foregroundStyle(.secondary)