├── .editorconfig ├── .gitattributes ├── .gitignore ├── DarkMode.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── license └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | -------------------------------------------------------------------------------- /DarkMode.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/DarkMode.playground/Contents.swift -------------------------------------------------------------------------------- /DarkMode.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/DarkMode.playground/contents.xcplayground -------------------------------------------------------------------------------- /DarkMode.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/DarkMode.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DarkMode.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/DarkMode.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/swift-snippets/HEAD/readme.md --------------------------------------------------------------------------------