From c7efb92a340337a3eb7a627d3f347d1b771d1aab Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 2 Aug 2022 08:59:15 -0500 Subject: [PATCH] updated colors Signed-off-by: Matt Bruce --- VDS/Components/Toggle/VDSToggle.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {