├── .github └── workflows │ └── swift.yml ├── .gitignore ├── Assets ├── demo-app.gif └── swift-theming-logo.png ├── Example ├── Example--iOS--Info.plist ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Example │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 16.png │ │ │ ├── 167.png │ │ │ ├── 172.png │ │ │ ├── 180.png │ │ │ ├── 196.png │ │ │ ├── 20.png │ │ │ ├── 216.png │ │ │ ├── 256.png │ │ │ ├── 29.png │ │ │ ├── 32.png │ │ │ ├── 40.png │ │ │ ├── 48.png │ │ │ ├── 50.png │ │ │ ├── 512.png │ │ │ ├── 55.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 64.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ ├── 88.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── cloud.imageset │ │ │ ├── 35.png │ │ │ └── Contents.json │ │ ├── launch-screen-logo.imageset │ │ │ ├── Contents.json │ │ │ ├── swift-theming-logo-with-text (1) 1.png │ │ │ ├── swift-theming-logo-with-text (1) 1@2x.png │ │ │ └── swift-theming-logo-with-text (1) 1@3x.png │ │ ├── moon.imageset │ │ │ ├── 2.2.png │ │ │ └── Contents.json │ │ └── sun.imageset │ │ │ ├── 26.png │ │ │ └── Contents.json │ ├── Color++.swift │ ├── ContentView.swift │ ├── Launch Screen.storyboard │ ├── MainApp.swift │ ├── Theme+Array++.swift │ ├── Theme.swift │ └── ThemeView.swift └── Tests iOS │ ├── Tests_iOS.swift │ └── Tests_iOSLaunchTests.swift ├── LICENSE ├── MigrationGuide.md ├── Package.swift ├── README.md ├── Sources └── SwiftTheming │ ├── Appearance │ ├── Appearance.swift │ └── PreferredAppearance.swift │ ├── Asset │ ├── AssetKeyWrappable.swift │ ├── Assetable.swift │ ├── EmptyAsset.swift │ └── Sets │ │ ├── ColorSet.swift │ │ ├── FontSet.swift │ │ ├── GradientSet.swift │ │ └── ImageSet.swift │ ├── Documentation.docc │ ├── Documentation.md │ └── Resources │ │ └── swift-theming.png │ ├── Extensions │ ├── Color++.swift │ ├── Font++.swift │ ├── Gradient++.swift │ ├── Image++.swift │ ├── UserDefaults++.swift │ └── View++.swift │ ├── Theme │ ├── DefaultTheming.swift │ ├── Theme.swift │ ├── Themeable.swift │ └── Themed.swift │ └── ThemeProvider │ ├── ThemeProvider.swift │ ├── ThemeProviding.swift │ └── ThemeProvidingViewModifier.swift ├── SwiftTheming.podspec ├── Tests └── SwiftThemingTests │ ├── Assets.xcassets │ ├── Contents.json │ ├── blue.imageset │ │ ├── Contents.json │ │ └── blue.jpeg │ ├── cloud.imageset │ │ ├── 35.png │ │ └── Contents.json │ ├── color.colorset │ │ └── Contents.json │ ├── green.imageset │ │ ├── Contents.json │ │ └── green.jpeg │ ├── moon.imageset │ │ ├── 2.2.png │ │ └── Contents.json │ └── sun.imageset │ │ ├── 26.png │ │ └── Contents.json │ ├── TestCases │ ├── AssetableTests.swift │ ├── ColorTests.swift │ ├── DefaultThemingTests.swift │ ├── FontTests.swift │ ├── GradientTests.swift │ ├── ImageTests.swift │ ├── ThemeProviderTests.swift │ ├── ThemeProvidingTests.swift │ └── UserDefaultsTests.swift │ ├── Theme │ └── Theme.swift │ ├── Utils │ └── ValueSpy.swift │ └── Views │ ├── SpyView.swift │ └── TestView.swift ├── codecov.yaml └── docs ├── css ├── documentation-topic.de084985.css ├── documentation-topic~topic~tutorials-overview.67b822e0.css ├── index.47bc740e.css ├── topic.2eb01958.css └── tutorials-overview.8754eb09.css ├── data └── documentation │ ├── swifttheming.json │ └── swifttheming │ ├── assetable.json │ ├── assetable │ ├── colorset(for:)-1k2jq.json │ ├── colorset(for:)-4qk9n.json │ ├── fontset(for:)-2lppk.json │ ├── fontset(for:)-3txba.json │ ├── gradientset(for:)-3fycx.json │ ├── gradientset(for:)-521uf.json │ ├── imageset(for:)-1mp4u.json │ └── imageset(for:)-9d001.json │ ├── assetkeywrappable.json │ ├── colorassetable.json │ ├── colorset.json │ ├── colorset │ ├── init(default:).json │ ├── init(light:dark:).json │ └── init(name:).json │ ├── defaultable.json │ ├── defaultable │ ├── defaultappearance().json │ └── defaulttheme().json │ ├── defaulttheming.json │ ├── emptyasset.json │ ├── fontassetable.json │ ├── fontset.json │ ├── fontset │ ├── init(default:).json │ └── init(light:dark:).json │ ├── gradientassetable.json │ ├── gradientset.json │ ├── gradientset │ ├── init(default:).json │ └── init(light:dark:).json │ ├── imageassetable.json │ ├── imageset.json │ ├── imageset │ ├── init(default:).json │ ├── init(light:dark:).json │ ├── init(name:).json │ ├── init(systemname:).json │ └── init(systemnamelight:systemnamedark:).json │ ├── preferredappearance.json │ ├── preferredappearance │ ├── !=(_:_:).json │ ├── dark.json │ ├── equatable-implementations.json │ ├── init(from:).json │ ├── light.json │ └── system.json │ ├── theme.json │ ├── theme │ ├── !=(_:_:).json │ ├── encode(to:).json │ ├── equatable-implementations.json │ ├── init(from:).json │ ├── init(key:).json │ └── key.json │ ├── themeable.json │ ├── themeable │ └── themed().json │ ├── themed.json │ ├── themed │ └── init().json │ ├── themeprovider.json │ ├── themeprovider │ ├── colorscheme.json │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── preferredappearance.json │ ├── setpreferredappearance(with:).json │ ├── settheme(with:).json │ └── theme.json │ ├── themeproviding.json │ └── themeproviding │ ├── dynamicproperty-implementations.json │ ├── init().json │ ├── update().json │ └── wrappedvalue.json ├── documentation └── swifttheming │ ├── assetable │ ├── colorset(for:)-1k2jq │ │ └── index.html │ ├── colorset(for:)-4qk9n │ │ └── index.html │ ├── fontset(for:)-2lppk │ │ └── index.html │ ├── fontset(for:)-3txba │ │ └── index.html │ ├── gradientset(for:)-3fycx │ │ └── index.html │ ├── gradientset(for:)-521uf │ │ └── index.html │ ├── imageset(for:)-1mp4u │ │ └── index.html │ ├── imageset(for:)-9d001 │ │ └── index.html │ └── index.html │ ├── assetkeywrappable │ └── index.html │ ├── colorassetable │ └── index.html │ ├── colorset │ ├── index.html │ ├── init(default:) │ │ └── index.html │ ├── init(light:dark:) │ │ └── index.html │ └── init(name:) │ │ └── index.html │ ├── defaultable │ ├── defaultappearance() │ │ └── index.html │ ├── defaulttheme() │ │ └── index.html │ └── index.html │ ├── defaulttheming │ └── index.html │ ├── emptyasset │ └── index.html │ ├── fontassetable │ └── index.html │ ├── fontset │ ├── index.html │ ├── init(default:) │ │ └── index.html │ └── init(light:dark:) │ │ └── index.html │ ├── gradientassetable │ └── index.html │ ├── gradientset │ ├── index.html │ ├── init(default:) │ │ └── index.html │ └── init(light:dark:) │ │ └── index.html │ ├── imageassetable │ └── index.html │ ├── imageset │ ├── index.html │ ├── init(default:) │ │ └── index.html │ ├── init(light:dark:) │ │ └── index.html │ ├── init(name:) │ │ └── index.html │ ├── init(systemname:) │ │ └── index.html │ └── init(systemnamelight:systemnamedark:) │ │ └── index.html │ ├── index.html │ ├── preferredappearance │ ├── !=(_:_:) │ │ └── index.html │ ├── dark │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── light │ │ └── index.html │ └── system │ │ └── index.html │ ├── theme │ ├── !=(_:_:) │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── init(key:) │ │ └── index.html │ └── key │ │ └── index.html │ ├── themeable │ ├── index.html │ └── themed() │ │ └── index.html │ ├── themed │ ├── index.html │ └── init() │ │ └── index.html │ ├── themeprovider │ ├── colorscheme │ │ └── index.html │ ├── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── preferredappearance │ │ └── index.html │ ├── setpreferredappearance(with:) │ │ └── index.html │ ├── settheme(with:) │ │ └── index.html │ └── theme │ │ └── index.html │ └── themeproviding │ ├── dynamicproperty-implementations │ └── index.html │ ├── index.html │ ├── init() │ └── index.html │ ├── update() │ └── index.html │ └── wrappedvalue │ └── index.html ├── favicon.ico ├── favicon.svg ├── images └── swift-theming.png ├── img ├── added-icon.d6f7e47d.svg ├── deprecated-icon.015b4f17.svg └── modified-icon.f496e73d.svg ├── index.html ├── js ├── chunk-2d0d3105.cd72cc8e.js ├── chunk-vendors.00bf82af.js ├── documentation-topic.f5df163e.js ├── documentation-topic~topic~tutorials-overview.06df3b46.js ├── highlight-js-bash.1b52852f.js ├── highlight-js-c.d1db3f17.js ├── highlight-js-cpp.eaddddbe.js ├── highlight-js-css.75eab1fe.js ├── highlight-js-custom-markdown.7cffc4b3.js ├── highlight-js-custom-swift.52388c22.js ├── highlight-js-diff.62d66733.js ├── highlight-js-http.163e45b6.js ├── highlight-js-java.8326d9d8.js ├── highlight-js-javascript.acb8a8eb.js ├── highlight-js-json.471128d2.js ├── highlight-js-llvm.6100b125.js ├── highlight-js-markdown.90077643.js ├── highlight-js-objectivec.bcdf5156.js ├── highlight-js-perl.757d7b6f.js ├── highlight-js-php.cc8d6c27.js ├── highlight-js-python.c214ed92.js ├── highlight-js-ruby.f889d392.js ├── highlight-js-scss.62ee18da.js ├── highlight-js-shell.dd7f411f.js ├── highlight-js-swift.84f3e88c.js ├── highlight-js-xml.9c3688c7.js ├── index.4dfda72c.js ├── topic.d56fc284.js └── tutorials-overview.0dfedc70.js ├── metadata.json └── theme-settings.json /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/demo-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Assets/demo-app.gif -------------------------------------------------------------------------------- /Assets/swift-theming-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Assets/swift-theming-logo.png -------------------------------------------------------------------------------- /Example/Example--iOS--Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example--iOS--Info.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/cloud.imageset/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/cloud.imageset/35.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/cloud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/cloud.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/launch-screen-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/launch-screen-logo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/launch-screen-logo.imageset/swift-theming-logo-with-text (1) 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/launch-screen-logo.imageset/swift-theming-logo-with-text (1) 1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/launch-screen-logo.imageset/swift-theming-logo-with-text (1) 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/launch-screen-logo.imageset/swift-theming-logo-with-text (1) 1@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/launch-screen-logo.imageset/swift-theming-logo-with-text (1) 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/launch-screen-logo.imageset/swift-theming-logo-with-text (1) 1@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/moon.imageset/2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/moon.imageset/2.2.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/moon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/moon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/sun.imageset/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/sun.imageset/26.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/sun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Assets.xcassets/sun.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Color++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Color++.swift -------------------------------------------------------------------------------- /Example/Example/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/ContentView.swift -------------------------------------------------------------------------------- /Example/Example/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/Example/MainApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/MainApp.swift -------------------------------------------------------------------------------- /Example/Example/Theme+Array++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Theme+Array++.swift -------------------------------------------------------------------------------- /Example/Example/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/Theme.swift -------------------------------------------------------------------------------- /Example/Example/ThemeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Example/ThemeView.swift -------------------------------------------------------------------------------- /Example/Tests iOS/Tests_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Tests iOS/Tests_iOS.swift -------------------------------------------------------------------------------- /Example/Tests iOS/Tests_iOSLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Example/Tests iOS/Tests_iOSLaunchTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/LICENSE -------------------------------------------------------------------------------- /MigrationGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/MigrationGuide.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftTheming/Appearance/Appearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Appearance/Appearance.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Appearance/PreferredAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Appearance/PreferredAppearance.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Asset/AssetKeyWrappable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Asset/AssetKeyWrappable.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Asset/Assetable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Asset/Assetable.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Asset/EmptyAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Asset/EmptyAsset.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Asset/Sets/ColorSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Asset/Sets/ColorSet.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Asset/Sets/FontSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Asset/Sets/FontSet.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Asset/Sets/GradientSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Asset/Sets/GradientSet.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Asset/Sets/ImageSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Asset/Sets/ImageSet.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Documentation.docc/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Documentation.docc/Documentation.md -------------------------------------------------------------------------------- /Sources/SwiftTheming/Documentation.docc/Resources/swift-theming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Documentation.docc/Resources/swift-theming.png -------------------------------------------------------------------------------- /Sources/SwiftTheming/Extensions/Color++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Extensions/Color++.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Extensions/Font++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Extensions/Font++.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Extensions/Gradient++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Extensions/Gradient++.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Extensions/Image++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Extensions/Image++.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Extensions/UserDefaults++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Extensions/UserDefaults++.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Extensions/View++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Extensions/View++.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Theme/DefaultTheming.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Theme/DefaultTheming.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Theme/Theme.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Theme/Themeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Theme/Themeable.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/Theme/Themed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/Theme/Themed.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/ThemeProvider/ThemeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/ThemeProvider/ThemeProvider.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/ThemeProvider/ThemeProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/ThemeProvider/ThemeProviding.swift -------------------------------------------------------------------------------- /Sources/SwiftTheming/ThemeProvider/ThemeProvidingViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Sources/SwiftTheming/ThemeProvider/ThemeProvidingViewModifier.swift -------------------------------------------------------------------------------- /SwiftTheming.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/SwiftTheming.podspec -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/blue.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/blue.imageset/blue.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/blue.imageset/blue.jpeg -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/cloud.imageset/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/cloud.imageset/35.png -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/cloud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/cloud.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/color.colorset/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/green.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/green.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/green.imageset/green.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/green.imageset/green.jpeg -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/moon.imageset/2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/moon.imageset/2.2.png -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/moon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/moon.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/sun.imageset/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/sun.imageset/26.png -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Assets.xcassets/sun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Assets.xcassets/sun.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/AssetableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/AssetableTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/ColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/ColorTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/DefaultThemingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/DefaultThemingTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/FontTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/FontTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/GradientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/GradientTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/ImageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/ImageTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/ThemeProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/ThemeProviderTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/ThemeProvidingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/ThemeProvidingTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/TestCases/UserDefaultsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/TestCases/UserDefaultsTests.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Theme/Theme.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Utils/ValueSpy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Utils/ValueSpy.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Views/SpyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Views/SpyView.swift -------------------------------------------------------------------------------- /Tests/SwiftThemingTests/Views/TestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/Tests/SwiftThemingTests/Views/TestView.swift -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/codecov.yaml -------------------------------------------------------------------------------- /docs/css/documentation-topic.de084985.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/css/documentation-topic.de084985.css -------------------------------------------------------------------------------- /docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css -------------------------------------------------------------------------------- /docs/css/index.47bc740e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/css/index.47bc740e.css -------------------------------------------------------------------------------- /docs/css/topic.2eb01958.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/css/topic.2eb01958.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.8754eb09.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/css/tutorials-overview.8754eb09.css -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/colorset(for:)-1k2jq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/colorset(for:)-1k2jq.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/colorset(for:)-4qk9n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/colorset(for:)-4qk9n.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/fontset(for:)-2lppk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/fontset(for:)-2lppk.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/fontset(for:)-3txba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/fontset(for:)-3txba.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/gradientset(for:)-3fycx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/gradientset(for:)-3fycx.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/gradientset(for:)-521uf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/gradientset(for:)-521uf.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/imageset(for:)-1mp4u.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/imageset(for:)-1mp4u.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetable/imageset(for:)-9d001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetable/imageset(for:)-9d001.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/assetkeywrappable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/assetkeywrappable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/colorassetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/colorassetable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/colorset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/colorset.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/colorset/init(default:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/colorset/init(default:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/colorset/init(light:dark:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/colorset/init(light:dark:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/colorset/init(name:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/colorset/init(name:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/defaultable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/defaultable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/defaultable/defaultappearance().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/defaultable/defaultappearance().json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/defaultable/defaulttheme().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/defaultable/defaulttheme().json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/defaulttheming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/defaulttheming.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/emptyasset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/emptyasset.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/fontassetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/fontassetable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/fontset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/fontset.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/fontset/init(default:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/fontset/init(default:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/fontset/init(light:dark:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/fontset/init(light:dark:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/gradientassetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/gradientassetable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/gradientset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/gradientset.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/gradientset/init(default:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/gradientset/init(default:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/gradientset/init(light:dark:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/gradientset/init(light:dark:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/imageassetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/imageassetable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/imageset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/imageset.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/imageset/init(default:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/imageset/init(default:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/imageset/init(light:dark:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/imageset/init(light:dark:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/imageset/init(name:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/imageset/init(name:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/imageset/init(systemname:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/imageset/init(systemname:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/imageset/init(systemnamelight:systemnamedark:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/imageset/init(systemnamelight:systemnamedark:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/preferredappearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/preferredappearance.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/preferredappearance/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/preferredappearance/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/preferredappearance/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/preferredappearance/dark.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/preferredappearance/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/preferredappearance/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/preferredappearance/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/preferredappearance/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/preferredappearance/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/preferredappearance/light.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/preferredappearance/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/preferredappearance/system.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/theme.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/theme/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/theme/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/theme/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/theme/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/theme/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/theme/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/theme/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/theme/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/theme/init(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/theme/init(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/theme/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/theme/key.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeable.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeable/themed().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeable/themed().json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themed.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themed/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themed/init().json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider/colorscheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider/colorscheme.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider/objectwillchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider/objectwillchange.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider/observableobject-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider/observableobject-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider/preferredappearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider/preferredappearance.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider/setpreferredappearance(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider/setpreferredappearance(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider/settheme(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider/settheme(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeprovider/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeprovider/theme.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeproviding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeproviding.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeproviding/dynamicproperty-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeproviding/dynamicproperty-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeproviding/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeproviding/init().json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeproviding/update().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeproviding/update().json -------------------------------------------------------------------------------- /docs/data/documentation/swifttheming/themeproviding/wrappedvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/data/documentation/swifttheming/themeproviding/wrappedvalue.json -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/colorset(for:)-1k2jq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/colorset(for:)-1k2jq/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/colorset(for:)-4qk9n/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/colorset(for:)-4qk9n/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/fontset(for:)-2lppk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/fontset(for:)-2lppk/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/fontset(for:)-3txba/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/fontset(for:)-3txba/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/gradientset(for:)-3fycx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/gradientset(for:)-3fycx/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/gradientset(for:)-521uf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/gradientset(for:)-521uf/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/imageset(for:)-1mp4u/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/imageset(for:)-1mp4u/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/imageset(for:)-9d001/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/imageset(for:)-9d001/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/assetkeywrappable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/assetkeywrappable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/colorassetable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/colorassetable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/colorset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/colorset/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/colorset/init(default:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/colorset/init(default:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/colorset/init(light:dark:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/colorset/init(light:dark:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/colorset/init(name:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/colorset/init(name:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/defaultable/defaultappearance()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/defaultable/defaultappearance()/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/defaultable/defaulttheme()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/defaultable/defaulttheme()/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/defaultable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/defaultable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/defaulttheming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/defaulttheming/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/emptyasset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/emptyasset/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/fontassetable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/fontassetable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/fontset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/fontset/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/fontset/init(default:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/fontset/init(default:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/fontset/init(light:dark:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/fontset/init(light:dark:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/gradientassetable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/gradientassetable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/gradientset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/gradientset/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/gradientset/init(default:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/gradientset/init(default:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/gradientset/init(light:dark:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/gradientset/init(light:dark:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/imageassetable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/imageassetable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/imageset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/imageset/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/imageset/init(default:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/imageset/init(default:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/imageset/init(light:dark:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/imageset/init(light:dark:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/imageset/init(name:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/imageset/init(name:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/imageset/init(systemname:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/imageset/init(systemname:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/imageset/init(systemnamelight:systemnamedark:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/imageset/init(systemnamelight:systemnamedark:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/preferredappearance/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/preferredappearance/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/preferredappearance/dark/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/preferredappearance/dark/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/preferredappearance/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/preferredappearance/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/preferredappearance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/preferredappearance/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/preferredappearance/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/preferredappearance/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/preferredappearance/light/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/preferredappearance/light/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/preferredappearance/system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/preferredappearance/system/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/theme/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/theme/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/theme/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/theme/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/theme/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/theme/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/theme/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/theme/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/theme/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/theme/init(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/theme/init(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/theme/key/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/theme/key/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeable/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeable/themed()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeable/themed()/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themed/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themed/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themed/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/colorscheme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/colorscheme/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/objectwillchange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/objectwillchange/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/observableobject-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/observableobject-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/preferredappearance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/preferredappearance/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/setpreferredappearance(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/setpreferredappearance(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/settheme(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/settheme(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeprovider/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeprovider/theme/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeproviding/dynamicproperty-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeproviding/dynamicproperty-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeproviding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeproviding/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeproviding/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeproviding/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeproviding/update()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeproviding/update()/index.html -------------------------------------------------------------------------------- /docs/documentation/swifttheming/themeproviding/wrappedvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/documentation/swifttheming/themeproviding/wrappedvalue/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/images/swift-theming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/images/swift-theming.png -------------------------------------------------------------------------------- /docs/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.00bf82af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/chunk-vendors.00bf82af.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.f5df163e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/documentation-topic.f5df163e.js -------------------------------------------------------------------------------- /docs/js/documentation-topic~topic~tutorials-overview.06df3b46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/documentation-topic~topic~tutorials-overview.06df3b46.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.52388c22.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-custom-swift.52388c22.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/js/index.4dfda72c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/index.4dfda72c.js -------------------------------------------------------------------------------- /docs/js/topic.d56fc284.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/topic.d56fc284.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.0dfedc70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/js/tutorials-overview.0dfedc70.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /docs/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscyrescotti/SwiftTheming/HEAD/docs/theme-settings.json --------------------------------------------------------------------------------