---
title: "listSectionSeparatorTint(_:edges:)"
framework: swiftui
role: symbol
role_heading: Instance Method
path: "swiftui/view/listsectionseparatortint(_:edges:)"
---

# listSectionSeparatorTint(_:edges:)

Sets the tint color associated with a section.

## Declaration

```swift
nonisolated func listSectionSeparatorTint(_ color: Color?, edges: VerticalEdge.Set = .all) -> some View

```

## Parameters

- `color`: The color to use to tint the section separators, or nil to use the default color for the current list style.
- `edges`: The set of row edges for which the tint applies. The list style might decide to not display certain separators, typically the top edge. The default is doc://com.apple.SwiftUI/documentation/SwiftUI/VerticalEdge/Set/all.

## Discussion

Discussion Separators can be presented above and below a section. You can specify to which edge this preference should apply. This modifier expresses a preference to the containing List. The list style is the final arbiter for the separator tint. The following example shows a simple grouped list whose section separators are tinted based on section-specific data: List {     ForEach(garage) { garage in         Section(header: Text(garage.location)) {             ForEach(garage.cars) { car in                 Text(car.model)                     .listRowSeparatorTint(car.brandColor)             }         }         .listSectionSeparatorTint(             garage.cars.last?.brandColor, edges: .bottom)     } } .listStyle(.grouped) To change the visibility and tint color for a row separator, use listRowSeparator(_:edges:) and listRowSeparatorTint(_:edges:). To hide a section separator, use listSectionSeparator(_:edges:).

## See Also

### Configuring separators

- [listRowSeparatorTint(_:edges:)](swiftui/view/listrowseparatortint(_:edges:).md)
- [listRowSeparator(_:edges:)](swiftui/view/listrowseparator(_:edges:).md)
- [listSectionSeparator(_:edges:)](swiftui/view/listsectionseparator(_:edges:).md)
