From 2397dbe25033b38e0ab4eb5ab5bd6fc3145d7e3e Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Thu, 11 Jun 2020 11:34:01 -0400 Subject: [PATCH] collor asset folder --- MVMCoreUI.xcodeproj/project.pbxproj | 4 ++ MVMCoreUI/Categories/UIColor+Extension.swift | 72 +++++++++---------- .../Categories/colors.xcassets/Contents.json | 6 ++ .../blue.colorset/Contents.json | 20 ++++++ .../blue33.colorset/Contents.json | 20 ++++++ .../blue66.colorset/Contents.json | 20 ++++++ .../blueInverted.colorset/Contents.json | 20 ++++++ .../blueShade1.colorset/Contents.json | 20 ++++++ .../blueShade2.colorset/Contents.json | 20 ++++++ .../coolGray1.colorset/Contents.json | 20 ++++++ .../coolGray10.colorset/Contents.json | 20 ++++++ .../coolGray3.colorset/Contents.json | 20 ++++++ .../coolGray6.colorset/Contents.json | 20 ++++++ .../green.colorset/Contents.json | 20 ++++++ .../green33.colorset/Contents.json | 20 ++++++ .../green66.colorset/Contents.json | 20 ++++++ .../greenInverted.colorset/Contents.json | 20 ++++++ .../greenShade2.colorset/Contents.json | 20 ++++++ .../orange.colorset/Contents.json | 20 ++++++ .../orange33.colorset/Contents.json | 20 ++++++ .../orange66.colorset/Contents.json | 20 ++++++ .../orangeAA.colorset/Contents.json | 20 ++++++ .../orangeShade1.colorset/Contents.json | 20 ++++++ .../orangeShade2.colorset/Contents.json | 20 ++++++ .../pink.colorset/Contents.json | 20 ++++++ .../pink33.colorset/Contents.json | 20 ++++++ .../pink66.colorset/Contents.json | 20 ++++++ .../pinkShade1.colorset/Contents.json | 20 ++++++ .../pinkShade2.colorset/Contents.json | 20 ++++++ .../purple.colorset/Contents.json | 20 ++++++ .../purple33.colorset/Contents.json | 20 ++++++ .../purple66.colorset/Contents.json | 20 ++++++ .../purpleShade1.colorset/Contents.json | 20 ++++++ .../purpleShade2.colorset/Contents.json | 20 ++++++ .../red.colorset/Contents.json | 20 ++++++ .../upGold1.colorset/Contents.json | 20 ++++++ .../upGold2.colorset/Contents.json | 20 ++++++ .../upGold3.colorset/Contents.json | 20 ++++++ .../yellow.colorset/Contents.json | 20 ++++++ 39 files changed, 766 insertions(+), 36 deletions(-) create mode 100644 MVMCoreUI/Categories/colors.xcassets/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/blue.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/blue33.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/blue66.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/blueInverted.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/blueShade1.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/blueShade2.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/coolGray1.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/coolGray10.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/coolGray3.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/coolGray6.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/green.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/green33.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/green66.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/greenInverted.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/greenShade2.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/orange.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/orange33.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/orange66.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/orangeAA.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/orangeShade1.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/orangeShade2.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/pink.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/pink33.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/pink66.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/pinkShade1.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/pinkShade2.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/purple.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/purple33.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/purple66.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/purpleShade1.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/purpleShade2.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/red.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/upGold1.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/upGold2.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/upGold3.colorset/Contents.json create mode 100644 MVMCoreUI/Categories/colors.xcassets/yellow.colorset/Contents.json diff --git a/MVMCoreUI.xcodeproj/project.pbxproj b/MVMCoreUI.xcodeproj/project.pbxproj index 3af65c10..3a9c7efe 100644 --- a/MVMCoreUI.xcodeproj/project.pbxproj +++ b/MVMCoreUI.xcodeproj/project.pbxproj @@ -80,6 +80,7 @@ 0A6682B5243769C700AD3CA1 /* TextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A6682B3243769C700AD3CA1 /* TextView.swift */; }; 0A69F611241BDEA700F7231B /* RuleAnyRequiredModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A69F610241BDEA700F7231B /* RuleAnyRequiredModel.swift */; }; 0A6BF4722360C56C0028F841 /* BaseDropdownEntryField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A6BF4712360C56C0028F841 /* BaseDropdownEntryField.swift */; }; + 0A6C1FC324927E2E00E64B52 /* colors.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0A6C1FC224927E2E00E64B52 /* colors.xcassets */; }; 0A775F2624893916009EFB58 /* ThreeHeadlineBodyLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A775F2524893916009EFB58 /* ThreeHeadlineBodyLink.swift */; }; 0A775F2824893937009EFB58 /* ThreeHeadlineBodyLinkModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A775F2724893937009EFB58 /* ThreeHeadlineBodyLinkModel.swift */; }; 0A7BAD74232A8DC700FB8E22 /* HeadlineBodyButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A7BAD73232A8DC700FB8E22 /* HeadlineBodyButton.swift */; }; @@ -521,6 +522,7 @@ 0A6682B3243769C700AD3CA1 /* TextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TextView.swift; sourceTree = ""; }; 0A69F610241BDEA700F7231B /* RuleAnyRequiredModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RuleAnyRequiredModel.swift; sourceTree = ""; }; 0A6BF4712360C56C0028F841 /* BaseDropdownEntryField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseDropdownEntryField.swift; sourceTree = ""; }; + 0A6C1FC224927E2E00E64B52 /* colors.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = colors.xcassets; path = MVMCoreUI/Categories/colors.xcassets; sourceTree = SOURCE_ROOT; }; 0A775F2524893916009EFB58 /* ThreeHeadlineBodyLink.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThreeHeadlineBodyLink.swift; sourceTree = ""; }; 0A775F2724893937009EFB58 /* ThreeHeadlineBodyLinkModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThreeHeadlineBodyLinkModel.swift; sourceTree = ""; }; 0A7918F423F5E7EA00772FF4 /* ImageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageView.swift; sourceTree = ""; }; @@ -1818,6 +1820,7 @@ D29DF26621E6A9E4003B2FB9 /* ThirdParty */, D29DF31521ECECC0003B2FB9 /* Fonts */, D29DF32D21EE8C3D003B2FB9 /* Media.xcassets */, + 0A6C1FC224927E2E00E64B52 /* colors.xcassets */, ); path = SupportingFiles; sourceTree = ""; @@ -2036,6 +2039,7 @@ files = ( 94CA227C24058534002D6750 /* VerizonNHGeTX-Bold.otf in Resources */, D29DF32C21EE8736003B2FB9 /* Localizable.strings in Resources */, + 0A6C1FC324927E2E00E64B52 /* colors.xcassets in Resources */, 94CA227D24058534002D6750 /* VerizonNHGeDS-Regular.otf in Resources */, D29DF32E21EE8C3D003B2FB9 /* Media.xcassets in Resources */, 94CA227E24058534002D6750 /* VerizonNHGeDS-Bold.otf in Resources */, diff --git a/MVMCoreUI/Categories/UIColor+Extension.swift b/MVMCoreUI/Categories/UIColor+Extension.swift index 7c82788c..e04a7d46 100644 --- a/MVMCoreUI/Categories/UIColor+Extension.swift +++ b/MVMCoreUI/Categories/UIColor+Extension.swift @@ -71,144 +71,144 @@ extension UIColor { //-------------------------------------------------- /// HEX: #D52B1E - public static let mvmRed = UIColor.color8Bits(red: 213, green: 43, blue: 30) + public static let mvmRed = UIColor(named: "red")! //-------------------------------------------------- // MARK: - Pink //-------------------------------------------------- /// HEX: #D90368 - public static let mvmPink = UIColor.color8Bits(red: 217, green: 3, blue: 104) + public static let mvmPink = UIColor(named: "pink")! /// HEX: #F2ABCD - public static let mvmPink33 = UIColor.color8Bits(red: 242, green: 171, blue: 205) + public static let mvmPink33 = UIColor(named: "pink33")! /// HEX: #E6589B - public static let mvmPink66 = UIColor.color8Bits(red: 230, green: 88, blue: 155) + public static let mvmPink66 = UIColor(named: "pink66")! /// HEX: #B31C63 - public static let mvmPinkShade1 = UIColor.color8Bits(red: 179, green: 28, blue: 99) + public static let mvmPinkShade1 = UIColor(named: "pinkShade1")! /// HEX: #830842 - public static let mvmPinkShade2 = UIColor.color8Bits(red: 131, green: 8, blue: 66) + public static let mvmPinkShade2 = UIColor(named: "pinkShade2")! //-------------------------------------------------- // MARK: - Purple //-------------------------------------------------- /// HEX: #8C00AC - public static let mvmPurple = UIColor.color8Bits(red: 140, green: 0, blue: 172) + public static let mvmPurple = UIColor(named: "purple")! /// HEX: #D9ABE4 - public static let mvmPurple33 = UIColor.color8Bits(red: 217, green: 171, blue: 228) + public static let mvmPurple33 = UIColor(named: "purple33")! /// HEX: #B356C8 - public static let mvmPurple66 = UIColor.color8Bits(red: 179, green: 86, blue: 200) + public static let mvmPurple66 = UIColor(named: "purple66")! /// HEX: #6C177F - public static let mvmPurpleShade1 = UIColor.color8Bits(red: 108, green: 23, blue: 127) + public static let mvmPurpleShade1 = UIColor(named: "purpleShade1")! /// HEX: #4A0E58 - public static let mvmPurpleShade2 = UIColor.color8Bits(red: 74, green: 14, blue: 88) + public static let mvmPurpleShade2 = UIColor(named: "purpleShade2")! //-------------------------------------------------- // MARK: - Orange //-------------------------------------------------- /// HEX: #ED7000 - public static let mvmOrange = UIColor.color8Bits(red: 237, green: 112, blue: 0) + public static let mvmOrange = UIColor(named: "orange")! /// HEX: #CC4D0F - public static let mvmOrangeAA = UIColor.color8Bits(red: 204, green: 77, blue: 15) + public static let mvmOrangeAA = UIColor(named: "orangeAA")! /// HEX: #F9D0AB - public static let mvmOrange33 = UIColor.color8Bits(red: 249, green: 208, blue: 171) + public static let mvmOrange33 = UIColor(named: "orange33")! /// HEX: #F3A157 - public static let mvmOrange66 = UIColor.color8Bits(red: 243, green: 161, blue: 87) + public static let mvmOrange66 = UIColor(named: "orange66")! /// HEX: #CB5F00 - public static let mvmOrangeShade1 = UIColor.color8Bits(red: 203, green: 95, blue: 0) + public static let mvmOrangeShade1 = UIColor(named: "orangeShade1")! /// HEX: #984700 - public static let mvmOrangeShade2 = UIColor.color8Bits(red: 152, green: 71, blue: 0) + public static let mvmOrangeShade2 = UIColor(named: "orangeShade2")! //-------------------------------------------------- // MARK: - Green //-------------------------------------------------- /// HEX: #008330 - public static let mvmGreen = UIColor.color8Bits(red: 0, green: 134, blue: 48) + public static let mvmGreen = UIColor(named: "green")! /// HEX: #ABE4BF - public static let mvmGreen33 = UIColor.color8Bits(red: 171, green: 228, blue: 191) + public static let mvmGreen33 = UIColor(named: "green33")! /// HEX: #57C880 - public static let mvmGreen66 = UIColor.color8Bits(red: 87, green: 200, blue: 128) + public static let mvmGreen66 = UIColor(named: "green66")! /// HEX: #0F5B25 - public static let mvmGreenShade2 = UIColor.color8Bits(red: 15, green: 91, blue: 37) + public static let mvmGreenShade2 = UIColor(named: "greenShade2")! /// HEX: #00AC3E - public static let mvmGreenInverted = UIColor.color8Bits(red: 0, green: 172, blue: 62) + public static let mvmGreenInverted = UIColor(named: "greenInverted")! //-------------------------------------------------- // MARK: - Blue //-------------------------------------------------- /// HEX: #0077B4 - public static let mvmBlue = UIColor.color8Bits(red: 0, green: 119, blue: 180) + public static let mvmBlue = UIColor(named: "blue")! /// HEX: #ABD8EF - public static let mvmBlue33 = UIColor.color8Bits(red: 171, green: 216, blue: 239) + public static let mvmBlue33 = UIColor(named: "blue33")! /// HEX: #57B1DF - public static let mvmBlue66 = UIColor.color8Bits(red: 87, green: 177, blue: 223) + public static let mvmBlue66 = UIColor(named: "blue66")! /// HEX: #136598 - public static let mvmBlueShade1 = UIColor.color8Bits(red: 19, green: 101, blue: 152) + public static let mvmBlueShade1 = UIColor(named: "blueShade1")! /// HEX: #0B4467 - public static let mvmBlueShade2 = UIColor.color8Bits(red: 11, green: 68, blue: 103) + public static let mvmBlueShade2 = UIColor(named: "blueShade2")! /// HEX: #0088CE - public static let mvmBlueInverted = UIColor.color8Bits(red: 0, green: 136, blue: 206) + public static let mvmBlueInverted = UIColor(named: "blueInverted")! //-------------------------------------------------- // MARK: - Yellow //-------------------------------------------------- /// HEX: #FFBC3D - public static let mvmYellow = UIColor.color8Bits(red: 255, green: 188, blue: 61) + public static let mvmYellow = UIColor(named: "yellow")! //-------------------------------------------------- // MARK: - Gray //-------------------------------------------------- /// HEX: #F6F6F6 - public static let mvmCoolGray1 = UIColor.grayscale(rgb: 246) + public static let mvmCoolGray1 = UIColor(named: "coolGray1")! /// HEX: #D8DADA - public static let mvmCoolGray3 = UIColor.color8Bits(red: 216, green: 218, blue: 218) + public static let mvmCoolGray3 = UIColor(named: "coolGray3")! /// HEX: #747676 - public static let mvmCoolGray6 = UIColor.color8Bits(red: 116, green: 118, blue: 118) + public static let mvmCoolGray6 = UIColor(named: "coolGray6")! /// HEX: #333333 - public static let mvmCoolGray10 = UIColor.grayscale(rgb: 51) + public static let mvmCoolGray10 = UIColor(named: "coolGray10")! //-------------------------------------------------- // MARK: - VZ UP Brand //-------------------------------------------------- /// HEX: #F9D542 - public static let vzupGold1 = UIColor.color8Bits(red: 249, green: 213, blue: 66) + public static let vzupGold1 = UIColor(named: "upGold1")! /// HEX: #F4CA53 - public static let vzupGold2 = UIColor.color8Bits(red: 244, green: 202, blue: 83) + public static let vzupGold2 = UIColor(named: "upGold2")! /// HEX: #CC9B2D - public static let vzupGold3 = UIColor.color8Bits(red: 204, green: 155, blue: 45) + public static let vzupGold3 = UIColor(named: "upGold3")! //-------------------------------------------------- // MARK: - Functions diff --git a/MVMCoreUI/Categories/colors.xcassets/Contents.json b/MVMCoreUI/Categories/colors.xcassets/Contents.json new file mode 100644 index 00000000..da4a164c --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/blue.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/blue.colorset/Contents.json new file mode 100644 index 00000000..8629132f --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/blue.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x00", + "alpha" : "1.000", + "blue" : "0xB4", + "green" : "0x77" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/blue33.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/blue33.colorset/Contents.json new file mode 100644 index 00000000..834857fe --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/blue33.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xAB", + "alpha" : "1.000", + "blue" : "0xEF", + "green" : "0xD8" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/blue66.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/blue66.colorset/Contents.json new file mode 100644 index 00000000..37fcdd6f --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/blue66.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x57", + "alpha" : "1.000", + "blue" : "0xDF", + "green" : "0xB1" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/blueInverted.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/blueInverted.colorset/Contents.json new file mode 100644 index 00000000..ca54d6ce --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/blueInverted.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x00", + "alpha" : "1.000", + "blue" : "0xCE", + "green" : "0x88" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/blueShade1.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/blueShade1.colorset/Contents.json new file mode 100644 index 00000000..0153330a --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/blueShade1.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x13", + "alpha" : "1.000", + "blue" : "0x98", + "green" : "0x65" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/blueShade2.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/blueShade2.colorset/Contents.json new file mode 100644 index 00000000..bae4fe1c --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/blueShade2.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x0B", + "alpha" : "1.000", + "blue" : "0x67", + "green" : "0x44" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/coolGray1.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/coolGray1.colorset/Contents.json new file mode 100644 index 00000000..18db9a3d --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/coolGray1.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xF6", + "alpha" : "1.000", + "blue" : "0xF6", + "green" : "0xF6" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/coolGray10.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/coolGray10.colorset/Contents.json new file mode 100644 index 00000000..f9b0b98b --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/coolGray10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x33", + "alpha" : "1.000", + "blue" : "0x33", + "green" : "0x33" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/coolGray3.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/coolGray3.colorset/Contents.json new file mode 100644 index 00000000..3082b216 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/coolGray3.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xD8", + "alpha" : "1.000", + "blue" : "0xDA", + "green" : "0xDA" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/coolGray6.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/coolGray6.colorset/Contents.json new file mode 100644 index 00000000..3c1ebf6d --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/coolGray6.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x74", + "alpha" : "1.000", + "blue" : "0x76", + "green" : "0x76" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/green.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/green.colorset/Contents.json new file mode 100644 index 00000000..40987eb7 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/green.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x00", + "alpha" : "1.000", + "blue" : "0x30", + "green" : "0x83" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/green33.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/green33.colorset/Contents.json new file mode 100644 index 00000000..63d79fa1 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/green33.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xAB", + "alpha" : "1.000", + "blue" : "0xBF", + "green" : "0xE4" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/green66.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/green66.colorset/Contents.json new file mode 100644 index 00000000..af8c1094 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/green66.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x57", + "alpha" : "1.000", + "blue" : "0x80", + "green" : "0xC8" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/greenInverted.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/greenInverted.colorset/Contents.json new file mode 100644 index 00000000..b2a48b0f --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/greenInverted.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x00", + "alpha" : "1.000", + "blue" : "0x3E", + "green" : "0xAC" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/greenShade2.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/greenShade2.colorset/Contents.json new file mode 100644 index 00000000..00dc90da --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/greenShade2.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x0F", + "alpha" : "1.000", + "blue" : "0x25", + "green" : "0x5B" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/orange.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/orange.colorset/Contents.json new file mode 100644 index 00000000..e5415e4b --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/orange.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xED", + "alpha" : "1.000", + "blue" : "0x00", + "green" : "0x70" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/orange33.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/orange33.colorset/Contents.json new file mode 100644 index 00000000..4c9e04e4 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/orange33.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xF9", + "alpha" : "1.000", + "blue" : "0xAB", + "green" : "0xD0" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/orange66.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/orange66.colorset/Contents.json new file mode 100644 index 00000000..67424977 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/orange66.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xF3", + "alpha" : "1.000", + "blue" : "0x57", + "green" : "0xA1" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/orangeAA.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/orangeAA.colorset/Contents.json new file mode 100644 index 00000000..56f98a12 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/orangeAA.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xCC", + "alpha" : "1.000", + "blue" : "0x0F", + "green" : "0x4D" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/orangeShade1.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/orangeShade1.colorset/Contents.json new file mode 100644 index 00000000..6cf34c78 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/orangeShade1.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xCB", + "alpha" : "1.000", + "blue" : "0x00", + "green" : "0x5F" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/orangeShade2.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/orangeShade2.colorset/Contents.json new file mode 100644 index 00000000..1fcbe3a4 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/orangeShade2.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x98", + "alpha" : "1.000", + "blue" : "0x00", + "green" : "0x47" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/pink.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/pink.colorset/Contents.json new file mode 100644 index 00000000..4cc87bd4 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/pink.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xD9", + "alpha" : "1.000", + "blue" : "0x68", + "green" : "0x03" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/pink33.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/pink33.colorset/Contents.json new file mode 100644 index 00000000..2d85dd8f --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/pink33.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xF2", + "alpha" : "1.000", + "blue" : "0xCD", + "green" : "0xAB" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/pink66.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/pink66.colorset/Contents.json new file mode 100644 index 00000000..c05eef33 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/pink66.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xE6", + "alpha" : "1.000", + "blue" : "0x9B", + "green" : "0x58" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/pinkShade1.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/pinkShade1.colorset/Contents.json new file mode 100644 index 00000000..59e8780d --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/pinkShade1.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xB3", + "alpha" : "1.000", + "blue" : "0x63", + "green" : "0x1C" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/pinkShade2.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/pinkShade2.colorset/Contents.json new file mode 100644 index 00000000..1dcdecbe --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/pinkShade2.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x83", + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x08" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/purple.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/purple.colorset/Contents.json new file mode 100644 index 00000000..49d87c9e --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/purple.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x8C", + "alpha" : "1.000", + "blue" : "0xAC", + "green" : "0x00" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/purple33.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/purple33.colorset/Contents.json new file mode 100644 index 00000000..95cac70e --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/purple33.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xD9", + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0xAB" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/purple66.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/purple66.colorset/Contents.json new file mode 100644 index 00000000..95e75564 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/purple66.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xB3", + "alpha" : "1.000", + "blue" : "0xC8", + "green" : "0x56" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/purpleShade1.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/purpleShade1.colorset/Contents.json new file mode 100644 index 00000000..689b7838 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/purpleShade1.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x6C", + "alpha" : "1.000", + "blue" : "0x7F", + "green" : "0x17" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/purpleShade2.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/purpleShade2.colorset/Contents.json new file mode 100644 index 00000000..d71ec372 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/purpleShade2.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0x4A", + "alpha" : "1.000", + "blue" : "0x58", + "green" : "0x0E" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/red.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/red.colorset/Contents.json new file mode 100644 index 00000000..536ccc9b --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/red.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xD5", + "alpha" : "1.000", + "blue" : "0x1E", + "green" : "0x2B" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/upGold1.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/upGold1.colorset/Contents.json new file mode 100644 index 00000000..90ccb299 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/upGold1.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xF9", + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0xD5" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/upGold2.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/upGold2.colorset/Contents.json new file mode 100644 index 00000000..6389c7a8 --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/upGold2.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xF4", + "alpha" : "1.000", + "blue" : "0x53", + "green" : "0xCA" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/upGold3.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/upGold3.colorset/Contents.json new file mode 100644 index 00000000..e25cb46f --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/upGold3.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xCC", + "alpha" : "1.000", + "blue" : "0x2D", + "green" : "0x9B" + } + } + } + ] +} \ No newline at end of file diff --git a/MVMCoreUI/Categories/colors.xcassets/yellow.colorset/Contents.json b/MVMCoreUI/Categories/colors.xcassets/yellow.colorset/Contents.json new file mode 100644 index 00000000..5c00b5eb --- /dev/null +++ b/MVMCoreUI/Categories/colors.xcassets/yellow.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + }, + "colors" : [ + { + "idiom" : "universal", + "color" : { + "color-space" : "srgb", + "components" : { + "red" : "0xFF", + "alpha" : "1.000", + "blue" : "0x3D", + "green" : "0xBC" + } + } + } + ] +} \ No newline at end of file