diff --git a/Clocker/Preferences/Appearance/AppearanceViewController.swift b/Clocker/Preferences/Appearance/AppearanceViewController.swift index 8419c40..062afa6 100644 --- a/Clocker/Preferences/Appearance/AppearanceViewController.swift +++ b/Clocker/Preferences/Appearance/AppearanceViewController.swift @@ -62,6 +62,20 @@ class AppearanceViewController: ParentViewController { "6 days", "7 days", ]) + + theme.removeAllItems() + theme.addItems(withTitles: [ + "Light", + "Dark", + "System", + "Solarized Light" + ]) + + if #available(macOS 11.0, *) { + + } else { + theme.font = NSFont.systemFont(ofSize: 13) + } setup()