├── ColorPicker.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Broccoli.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Broccoli.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ColorPicker.xcscheme │ └── xcschememanagement.plist ├── ColorPicker.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── ColorPicker.xcscmblueprint └── xcuserdata │ └── Broccoli.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── ColorPicker ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 60*60@2x.png │ │ ├── 60*60@3x.png │ │ ├── Contents.json │ │ ├── ICON29@2x.png │ │ ├── ICON29@3x.png │ │ ├── ICON40@2x.png │ │ └── ICON40@3x.png │ ├── Contents.json │ ├── Launch_ICON.imageset │ │ ├── Contents.json │ │ └── Launch_ICON.png │ ├── blurLayer.imageset │ │ ├── 096@2x.jpg │ │ └── Contents.json │ └── overLayer.imageset │ │ ├── Contents.json │ │ └── 首页-2.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ColorPicker-Bridging-Header.h ├── Info.plist ├── Model │ └── ColorInfo.swift ├── Resources │ ├── ColorInfoData │ ├── DeepdeneBQ-Roman.otf │ └── HeiseiMinStd-W7.otf └── ViewController │ ├── ColorListViewController.swift │ └── ColorPropertyTableViewController.swift ├── Gif └── Color.gif ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── pop │ │ │ ├── FloatConversion.h │ │ │ ├── POP.h │ │ │ ├── POPAction.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationEventInternal.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationInternal.h │ │ │ ├── POPAnimationPrivate.h │ │ │ ├── POPAnimationRuntime.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimationTracerInternal.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPAnimatorPrivate.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPBasicAnimationInternal.h │ │ │ ├── POPCGUtils.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDecayAnimationInternal.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPMath.h │ │ │ ├── POPPropertyAnimation.h │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ ├── POPSpringAnimation.h │ │ │ ├── POPSpringAnimationInternal.h │ │ │ ├── POPSpringSolver.h │ │ │ ├── POPVector.h │ │ │ ├── TransformationMatrix.h │ │ │ └── UnitBezier.h │ └── Public │ │ └── pop │ │ ├── POP.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimator.h │ │ ├── POPBasicAnimation.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPPropertyAnimation.h │ │ └── POPSpringAnimation.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Broccoli.xcuserdatad │ │ └── xcschemes │ │ ├── Pods.xcscheme │ │ ├── pop.xcscheme │ │ └── xcschememanagement.plist ├── Target Support Files │ ├── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig │ └── pop │ │ ├── pop-Private.xcconfig │ │ ├── pop-dummy.m │ │ ├── pop-prefix.pch │ │ └── pop.xcconfig └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h └── README.md /ColorPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ColorPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ColorPicker.xcodeproj/project.xcworkspace/xcuserdata/Broccoli.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcodeproj/project.xcworkspace/xcuserdata/Broccoli.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ColorPicker.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ColorPicker.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/ColorPicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/ColorPicker.xcscheme -------------------------------------------------------------------------------- /ColorPicker.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ColorPicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ColorPicker.xcworkspace/xcshareddata/ColorPicker.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcworkspace/xcshareddata/ColorPicker.xcscmblueprint -------------------------------------------------------------------------------- /ColorPicker.xcworkspace/xcuserdata/Broccoli.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcworkspace/xcuserdata/Broccoli.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ColorPicker.xcworkspace/xcuserdata/Broccoli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker.xcworkspace/xcuserdata/Broccoli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ColorPicker/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/AppDelegate.swift -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/AppIcon.appiconset/60*60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/AppIcon.appiconset/60*60@2x.png -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/AppIcon.appiconset/60*60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/AppIcon.appiconset/60*60@3x.png -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON29@2x.png -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON29@3x.png -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON40@2x.png -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/AppIcon.appiconset/ICON40@3x.png -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/Launch_ICON.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/Launch_ICON.imageset/Contents.json -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/Launch_ICON.imageset/Launch_ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/Launch_ICON.imageset/Launch_ICON.png -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/blurLayer.imageset/096@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/blurLayer.imageset/096@2x.jpg -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/blurLayer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/blurLayer.imageset/Contents.json -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/overLayer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/overLayer.imageset/Contents.json -------------------------------------------------------------------------------- /ColorPicker/Assets.xcassets/overLayer.imageset/首页-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Assets.xcassets/overLayer.imageset/首页-2.png -------------------------------------------------------------------------------- /ColorPicker/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ColorPicker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ColorPicker/ColorPicker-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/ColorPicker-Bridging-Header.h -------------------------------------------------------------------------------- /ColorPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Info.plist -------------------------------------------------------------------------------- /ColorPicker/Model/ColorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Model/ColorInfo.swift -------------------------------------------------------------------------------- /ColorPicker/Resources/ColorInfoData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Resources/ColorInfoData -------------------------------------------------------------------------------- /ColorPicker/Resources/DeepdeneBQ-Roman.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Resources/DeepdeneBQ-Roman.otf -------------------------------------------------------------------------------- /ColorPicker/Resources/HeiseiMinStd-W7.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/Resources/HeiseiMinStd-W7.otf -------------------------------------------------------------------------------- /ColorPicker/ViewController/ColorListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/ViewController/ColorListViewController.swift -------------------------------------------------------------------------------- /ColorPicker/ViewController/ColorPropertyTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/ColorPicker/ViewController/ColorPropertyTableViewController.swift -------------------------------------------------------------------------------- /Gif/Color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Gif/Color.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | pod 'pop', '~> 1.0' -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/Pods.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Pods.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/Pods.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Pods.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/pop.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Pods.xcodeproj/xcuserdata/Broccoli.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/pop/pop-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/pop/pop-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/pop/pop-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/Target Support Files/pop/pop.xcconfig -------------------------------------------------------------------------------- /Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/README.md -------------------------------------------------------------------------------- /Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broccolii/NipponColors/HEAD/README.md --------------------------------------------------------------------------------