diff --git a/VDS/Components/Toggle/VDSToggle.swift b/VDS/Components/Toggle/VDSToggle.swift index c4a5e10b..f8f1d65b 100644 --- a/VDS/Components/Toggle/VDSToggle.swift +++ b/VDS/Components/Toggle/VDSToggle.swift @@ -36,9 +36,9 @@ import Combine private func getToggleColor(for disabled: Bool, surface: Surface) -> (on: UIColor, off: UIColor) { if disabled { if surface == .light { - return (on: VDSColor.elementsDisabledOnlight, off: VDSColor.elementsDisabledOnlight) + return (on: VDSColor.interactiveDisabledOnlight, off: VDSColor.interactiveDisabledOnlight) } else { - return (on: VDSColor.elementsDisabledOnDark, off: VDSColor.elementsDisabledOnDark) + return (on: VDSColor.interactiveDisabledOndark, off: VDSColor.interactiveDisabledOndark) } } else { if surface == .light {