├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE.md ├── Package.swift ├── Package@swift-4.swift ├── PrettyColors.podspec ├── PrettyColors.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── PrettyColors.xcscheme ├── README.md ├── Source ├── Color · EightBit.swift ├── Color · Named.swift ├── Color.swift ├── ColorWrap.swift ├── ECMA 48.swift └── StyleParameter.swift ├── Supporting Files ├── Configuration.xcconfig └── Info.plist └── Tests ├── LinuxMain.swift ├── Supporting Files ├── Configuration.xcconfig ├── Info.plist └── LinuxMain.stencil └── UnitTests ├── Equality.swift └── PrettyColorsTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Package@swift-4.swift -------------------------------------------------------------------------------- /PrettyColors.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/PrettyColors.podspec -------------------------------------------------------------------------------- /PrettyColors.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/PrettyColors.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PrettyColors.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/PrettyColors.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PrettyColors.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/PrettyColors.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /PrettyColors.xcodeproj/xcshareddata/xcschemes/PrettyColors.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/PrettyColors.xcodeproj/xcshareddata/xcschemes/PrettyColors.xcscheme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/README.md -------------------------------------------------------------------------------- /Source/Color · EightBit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Source/Color · EightBit.swift -------------------------------------------------------------------------------- /Source/Color · Named.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Source/Color · Named.swift -------------------------------------------------------------------------------- /Source/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Source/Color.swift -------------------------------------------------------------------------------- /Source/ColorWrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Source/ColorWrap.swift -------------------------------------------------------------------------------- /Source/ECMA 48.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Source/ECMA 48.swift -------------------------------------------------------------------------------- /Source/StyleParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Source/StyleParameter.swift -------------------------------------------------------------------------------- /Supporting Files/Configuration.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Supporting Files/Configuration.xcconfig -------------------------------------------------------------------------------- /Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Supporting Files/Configuration.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Tests/Supporting Files/Configuration.xcconfig -------------------------------------------------------------------------------- /Tests/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Tests/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Tests/Supporting Files/LinuxMain.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Tests/Supporting Files/LinuxMain.stencil -------------------------------------------------------------------------------- /Tests/UnitTests/Equality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Tests/UnitTests/Equality.swift -------------------------------------------------------------------------------- /Tests/UnitTests/PrettyColorsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhealy/PrettyColors/HEAD/Tests/UnitTests/PrettyColorsTests.swift --------------------------------------------------------------------------------