├── .gitignore ├── Kilo-Loco-Theme ├── Kilo Loco Large.xccolortheme ├── Kilo Loco Medium.xccolortheme └── Kilo-Loco.xccolortheme ├── Loco-Dark-Theme ├── Loco Dark Medium.xccolortheme └── Loco Dark.xccolortheme ├── Loco-Light-Theme └── Loco Light.xccolortheme ├── Makefile ├── README.md ├── images └── kiloLocoRegular.png └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store -------------------------------------------------------------------------------- /Kilo-Loco-Theme/Kilo Loco Large.xccolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 1 1 1 1 7 | DVTConsoleDebuggerInputTextFont 8 | SFMono-Bold - 24.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 1 1 1 1 11 | DVTConsoleDebuggerOutputTextFont 12 | SFMono-Regular - 24.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.615686 0.498039 0.870588 1 15 | DVTConsoleDebuggerPromptTextFont 16 | SFMono-Bold - 24.0 17 | DVTConsoleExectuableInputTextColor 18 | 1 1 1 1 19 | DVTConsoleExectuableInputTextFont 20 | SFMono-Regular - 24.0 21 | DVTConsoleExectuableOutputTextColor 22 | 1 1 1 1 23 | DVTConsoleExectuableOutputTextFont 24 | SFMono-Bold - 24.0 25 | DVTConsoleTextBackgroundColor 26 | 0 0 0 1 27 | DVTConsoleTextInsertionPointColor 28 | 1 1 1 1 29 | DVTConsoleTextSelectionColor 30 | 0.407843 0.388235 0.34902 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.419608 0.188235 0.345098 1 33 | DVTLineSpacing 34 | 1.1000000238418579 35 | DVTMarkupTextBackgroundColor 36 | 0.08 0.08 0.08 1 37 | DVTMarkupTextBorderColor 38 | 0.1536 0.1536 0.1536 1 39 | DVTMarkupTextCodeFont 40 | SFMono-Regular - 11.0 41 | DVTMarkupTextEmphasisColor 42 | 1 1 1 1 43 | DVTMarkupTextEmphasisFont 44 | .AppleSystemUIFontItalic - 11.0 45 | DVTMarkupTextInlineCodeColor 46 | 1 1 1 0.7 47 | DVTMarkupTextLinkColor 48 | 0.255 0.392 1 1 49 | DVTMarkupTextLinkFont 50 | .AppleSystemUIFont - 11.0 51 | DVTMarkupTextNormalColor 52 | 1 1 1 1 53 | DVTMarkupTextNormalFont 54 | .AppleSystemUIFont - 11.0 55 | DVTMarkupTextOtherHeadingColor 56 | 1 1 1 0.5 57 | DVTMarkupTextOtherHeadingFont 58 | .AppleSystemUIFont - 15.0 59 | DVTMarkupTextPrimaryHeadingColor 60 | 1 1 1 1 61 | DVTMarkupTextPrimaryHeadingFont 62 | .AppleSystemUIFont - 25.0 63 | DVTMarkupTextSecondaryHeadingColor 64 | 1 1 1 1 65 | DVTMarkupTextSecondaryHeadingFont 66 | .AppleSystemUIFont - 19.0 67 | DVTMarkupTextStrongColor 68 | 1 1 1 1 69 | DVTMarkupTextStrongFont 70 | .AppleSystemUIFontBold - 11.0 71 | DVTScrollbarMarkerAnalyzerColor 72 | 0.403922 0.372549 1 1 73 | DVTScrollbarMarkerBreakpointColor 74 | 0.290196 0.290196 0.968627 1 75 | DVTScrollbarMarkerDiffColor 76 | 0.556863 0.556863 0.556863 1 77 | DVTScrollbarMarkerDiffConflictColor 78 | 0.968627 0.290196 0.290196 1 79 | DVTScrollbarMarkerErrorColor 80 | 0.968627 0.290196 0.290196 1 81 | DVTScrollbarMarkerRuntimeIssueColor 82 | 0.643137 0.509804 1 1 83 | DVTScrollbarMarkerWarningColor 84 | 0.937255 0.717647 0.34902 1 85 | DVTSourceTextBackground 86 | 0.0705882 0 0.133333 1 87 | DVTSourceTextBlockDimBackgroundColor 88 | 0.5 0.5 0.5 1 89 | DVTSourceTextCurrentLineHighlightColor 90 | 0.192157 0.121569 0.258824 1 91 | DVTSourceTextInsertionPointColor 92 | 1 1 1 1 93 | DVTSourceTextInvisiblesColor 94 | 0.2 0.2 0.2 1 95 | DVTSourceTextSelectionColor 96 | 0.117647 0.164706 0.309804 1 97 | DVTSourceTextSyntaxColors 98 | 99 | xcode.syntax.attribute 100 | 0.177359 0.265488 0.608972 1 101 | xcode.syntax.character 102 | 0.470588 0.427451 1 1 103 | xcode.syntax.comment 104 | 0.498039 0.498039 0.498039 1 105 | xcode.syntax.comment.doc 106 | 0.498039 0.498039 0.498039 1 107 | xcode.syntax.comment.doc.keyword 108 | 0.501961 0.498039 0.498039 1 109 | xcode.syntax.identifier.class 110 | 0.172549 1 0.2 1 111 | xcode.syntax.identifier.class.system 112 | 0.117647 0.921569 1 1 113 | xcode.syntax.identifier.constant 114 | 0.132108 1 0.256586 1 115 | xcode.syntax.identifier.constant.system 116 | 0.117039 0.920157 0.998924 1 117 | xcode.syntax.identifier.function 118 | 0.133333 1 0.254902 1 119 | xcode.syntax.identifier.function.system 120 | 0.117647 0.921569 1 1 121 | xcode.syntax.identifier.macro 122 | 0.896 0.488 0.284 1 123 | xcode.syntax.identifier.macro.system 124 | 0.896 0.488 0.284 1 125 | xcode.syntax.identifier.type 126 | 0.133333 1 0.254902 1 127 | xcode.syntax.identifier.type.system 128 | 0.117039 0.920157 0.998924 1 129 | xcode.syntax.identifier.variable 130 | 0.133333 1 0.254902 1 131 | xcode.syntax.identifier.variable.system 132 | 0.117039 0.920157 0.998924 1 133 | xcode.syntax.keyword 134 | 0.945098 0 1 1 135 | xcode.syntax.number 136 | 0.469 0.426 1 1 137 | xcode.syntax.plain 138 | 1 1 1 1 139 | xcode.syntax.preprocessor 140 | 0.896 0.488 0.284 1 141 | xcode.syntax.string 142 | 0.976471 0.92549 0.0705882 1 143 | xcode.syntax.url 144 | 0.255 0.392 1 1 145 | 146 | DVTSourceTextSyntaxFonts 147 | 148 | xcode.syntax.attribute 149 | SFMono-Semibold - 24.0 150 | xcode.syntax.character 151 | SFMono-Semibold - 24.0 152 | xcode.syntax.comment 153 | SFMono-SemiboldItalic - 24.0 154 | xcode.syntax.comment.doc 155 | SFMono-SemiboldItalic - 24.0 156 | xcode.syntax.comment.doc.keyword 157 | SFMono-SemiboldItalic - 24.0 158 | xcode.syntax.identifier.class 159 | SFMono-Semibold - 24.0 160 | xcode.syntax.identifier.class.system 161 | SFMono-Semibold - 24.0 162 | xcode.syntax.identifier.constant 163 | SFMono-Semibold - 24.0 164 | xcode.syntax.identifier.constant.system 165 | SFMono-Semibold - 24.0 166 | xcode.syntax.identifier.function 167 | SFMono-Semibold - 24.0 168 | xcode.syntax.identifier.function.system 169 | SFMono-Semibold - 24.0 170 | xcode.syntax.identifier.macro 171 | SFMono-Semibold - 24.0 172 | xcode.syntax.identifier.macro.system 173 | SFMono-Semibold - 24.0 174 | xcode.syntax.identifier.type 175 | SFMono-Semibold - 24.0 176 | xcode.syntax.identifier.type.system 177 | SFMono-Semibold - 24.0 178 | xcode.syntax.identifier.variable 179 | SFMono-Semibold - 24.0 180 | xcode.syntax.identifier.variable.system 181 | SFMono-Semibold - 24.0 182 | xcode.syntax.keyword 183 | SFMono-Semibold - 24.0 184 | xcode.syntax.number 185 | SFMono-Semibold - 24.0 186 | xcode.syntax.plain 187 | SFMono-Semibold - 24.0 188 | xcode.syntax.preprocessor 189 | SFMono-Semibold - 24.0 190 | xcode.syntax.string 191 | SFMono-Semibold - 24.0 192 | xcode.syntax.url 193 | SFMono-Semibold - 24.0 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /Kilo-Loco-Theme/Kilo Loco Medium.xccolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 1 1 1 1 7 | DVTConsoleDebuggerInputTextFont 8 | SFMono-Bold - 18.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 1 1 1 1 11 | DVTConsoleDebuggerOutputTextFont 12 | SFMono-Regular - 18.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.615686 0.498039 0.870588 1 15 | DVTConsoleDebuggerPromptTextFont 16 | SFMono-Bold - 18.0 17 | DVTConsoleExectuableInputTextColor 18 | 1 1 1 1 19 | DVTConsoleExectuableInputTextFont 20 | SFMono-Regular - 18.0 21 | DVTConsoleExectuableOutputTextColor 22 | 1 1 1 1 23 | DVTConsoleExectuableOutputTextFont 24 | SFMono-Bold - 18.0 25 | DVTConsoleTextBackgroundColor 26 | 0 0 0 1 27 | DVTConsoleTextInsertionPointColor 28 | 1 1 1 1 29 | DVTConsoleTextSelectionColor 30 | 0.407843 0.388235 0.34902 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.419608 0.188235 0.345098 1 33 | DVTLineSpacing 34 | 1.1000000238418579 35 | DVTMarkupTextBackgroundColor 36 | 0.08 0.08 0.08 1 37 | DVTMarkupTextBorderColor 38 | 0.1536 0.1536 0.1536 1 39 | DVTMarkupTextCodeFont 40 | SFMono-Regular - 11.0 41 | DVTMarkupTextEmphasisColor 42 | 1 1 1 1 43 | DVTMarkupTextEmphasisFont 44 | .AppleSystemUIFontItalic - 11.0 45 | DVTMarkupTextInlineCodeColor 46 | 1 1 1 0.7 47 | DVTMarkupTextLinkColor 48 | 0.255 0.392 1 1 49 | DVTMarkupTextLinkFont 50 | .AppleSystemUIFont - 11.0 51 | DVTMarkupTextNormalColor 52 | 1 1 1 1 53 | DVTMarkupTextNormalFont 54 | .AppleSystemUIFont - 11.0 55 | DVTMarkupTextOtherHeadingColor 56 | 1 1 1 0.5 57 | DVTMarkupTextOtherHeadingFont 58 | .AppleSystemUIFont - 15.0 59 | DVTMarkupTextPrimaryHeadingColor 60 | 1 1 1 1 61 | DVTMarkupTextPrimaryHeadingFont 62 | .AppleSystemUIFont - 25.0 63 | DVTMarkupTextSecondaryHeadingColor 64 | 1 1 1 1 65 | DVTMarkupTextSecondaryHeadingFont 66 | .AppleSystemUIFont - 19.0 67 | DVTMarkupTextStrongColor 68 | 1 1 1 1 69 | DVTMarkupTextStrongFont 70 | .AppleSystemUIFontBold - 11.0 71 | DVTScrollbarMarkerAnalyzerColor 72 | 0.403922 0.372549 1 1 73 | DVTScrollbarMarkerBreakpointColor 74 | 0.290196 0.290196 0.968627 1 75 | DVTScrollbarMarkerDiffColor 76 | 0.556863 0.556863 0.556863 1 77 | DVTScrollbarMarkerDiffConflictColor 78 | 0.968627 0.290196 0.290196 1 79 | DVTScrollbarMarkerErrorColor 80 | 0.968627 0.290196 0.290196 1 81 | DVTScrollbarMarkerRuntimeIssueColor 82 | 0.643137 0.509804 1 1 83 | DVTScrollbarMarkerWarningColor 84 | 0.937255 0.717647 0.34902 1 85 | DVTSourceTextBackground 86 | 0.0705882 0 0.133333 1 87 | DVTSourceTextBlockDimBackgroundColor 88 | 0.5 0.5 0.5 1 89 | DVTSourceTextCurrentLineHighlightColor 90 | 0.192157 0.121569 0.258824 1 91 | DVTSourceTextInsertionPointColor 92 | 1 1 1 1 93 | DVTSourceTextInvisiblesColor 94 | 0.2 0.2 0.2 1 95 | DVTSourceTextSelectionColor 96 | 0.117647 0.164706 0.309804 1 97 | DVTSourceTextSyntaxColors 98 | 99 | xcode.syntax.attribute 100 | 0.177359 0.265488 0.608972 1 101 | xcode.syntax.character 102 | 0.470588 0.427451 1 1 103 | xcode.syntax.comment 104 | 0.498039 0.498039 0.498039 1 105 | xcode.syntax.comment.doc 106 | 0.498039 0.498039 0.498039 1 107 | xcode.syntax.comment.doc.keyword 108 | 0.501961 0.498039 0.498039 1 109 | xcode.syntax.identifier.class 110 | 0.172549 1 0.2 1 111 | xcode.syntax.identifier.class.system 112 | 0.117647 0.921569 1 1 113 | xcode.syntax.identifier.constant 114 | 0.132108 1 0.256586 1 115 | xcode.syntax.identifier.constant.system 116 | 0.117039 0.920157 0.998924 1 117 | xcode.syntax.identifier.function 118 | 0.133333 1 0.254902 1 119 | xcode.syntax.identifier.function.system 120 | 0.117647 0.921569 1 1 121 | xcode.syntax.identifier.macro 122 | 0.896 0.488 0.284 1 123 | xcode.syntax.identifier.macro.system 124 | 0.896 0.488 0.284 1 125 | xcode.syntax.identifier.type 126 | 0.133333 1 0.254902 1 127 | xcode.syntax.identifier.type.system 128 | 0.117039 0.920157 0.998924 1 129 | xcode.syntax.identifier.variable 130 | 0.133333 1 0.254902 1 131 | xcode.syntax.identifier.variable.system 132 | 0.117039 0.920157 0.998924 1 133 | xcode.syntax.keyword 134 | 0.945098 0 1 1 135 | xcode.syntax.number 136 | 0.469 0.426 1 1 137 | xcode.syntax.plain 138 | 1 1 1 1 139 | xcode.syntax.preprocessor 140 | 0.896 0.488 0.284 1 141 | xcode.syntax.string 142 | 0.976471 0.92549 0.0705882 1 143 | xcode.syntax.url 144 | 0.255 0.392 1 1 145 | 146 | DVTSourceTextSyntaxFonts 147 | 148 | xcode.syntax.attribute 149 | SFMono-Semibold - 18.0 150 | xcode.syntax.character 151 | SFMono-Semibold - 18.0 152 | xcode.syntax.comment 153 | SFMono-SemiboldItalic - 18.0 154 | xcode.syntax.comment.doc 155 | SFMono-SemiboldItalic - 18.0 156 | xcode.syntax.comment.doc.keyword 157 | SFMono-SemiboldItalic - 18.0 158 | xcode.syntax.identifier.class 159 | SFMono-Semibold - 18.0 160 | xcode.syntax.identifier.class.system 161 | SFMono-Semibold - 18.0 162 | xcode.syntax.identifier.constant 163 | SFMono-Semibold - 18.0 164 | xcode.syntax.identifier.constant.system 165 | SFMono-Semibold - 18.0 166 | xcode.syntax.identifier.function 167 | SFMono-Semibold - 18.0 168 | xcode.syntax.identifier.function.system 169 | SFMono-Semibold - 18.0 170 | xcode.syntax.identifier.macro 171 | SFMono-Semibold - 18.0 172 | xcode.syntax.identifier.macro.system 173 | SFMono-Semibold - 18.0 174 | xcode.syntax.identifier.type 175 | SFMono-Semibold - 18.0 176 | xcode.syntax.identifier.type.system 177 | SFMono-Semibold - 18.0 178 | xcode.syntax.identifier.variable 179 | SFMono-Semibold - 18.0 180 | xcode.syntax.identifier.variable.system 181 | SFMono-Semibold - 18.0 182 | xcode.syntax.keyword 183 | SFMono-Semibold - 18.0 184 | xcode.syntax.number 185 | SFMono-Semibold - 18.0 186 | xcode.syntax.plain 187 | SFMono-Semibold - 18.0 188 | xcode.syntax.preprocessor 189 | SFMono-Semibold - 18.0 190 | xcode.syntax.string 191 | SFMono-Semibold - 18.0 192 | xcode.syntax.url 193 | SFMono-Semibold - 18.0 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /Kilo-Loco-Theme/Kilo-Loco.xccolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 1 1 1 1 7 | DVTConsoleDebuggerInputTextFont 8 | SFMono-Bold - 12.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 1 1 1 1 11 | DVTConsoleDebuggerOutputTextFont 12 | SFMono-Regular - 12.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.615686 0.498039 0.870588 1 15 | DVTConsoleDebuggerPromptTextFont 16 | SFMono-Bold - 12.0 17 | DVTConsoleExectuableInputTextColor 18 | 1 1 1 1 19 | DVTConsoleExectuableInputTextFont 20 | SFMono-Regular - 12.0 21 | DVTConsoleExectuableOutputTextColor 22 | 1 1 1 1 23 | DVTConsoleExectuableOutputTextFont 24 | SFMono-Bold - 12.0 25 | DVTConsoleTextBackgroundColor 26 | 0 0 0 1 27 | DVTConsoleTextInsertionPointColor 28 | 1 1 1 1 29 | DVTConsoleTextSelectionColor 30 | 0.407843 0.388235 0.34902 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.419608 0.188235 0.345098 1 33 | DVTLineSpacing 34 | 1.1000000238418579 35 | DVTMarkupTextBackgroundColor 36 | 0.08 0.08 0.08 1 37 | DVTMarkupTextBorderColor 38 | 0.1536 0.1536 0.1536 1 39 | DVTMarkupTextCodeFont 40 | SFMono-Regular - 11.0 41 | DVTMarkupTextEmphasisColor 42 | 1 1 1 1 43 | DVTMarkupTextEmphasisFont 44 | .AppleSystemUIFontItalic - 11.0 45 | DVTMarkupTextInlineCodeColor 46 | 1 1 1 0.7 47 | DVTMarkupTextLinkColor 48 | 0.255 0.392 1 1 49 | DVTMarkupTextLinkFont 50 | .AppleSystemUIFont - 11.0 51 | DVTMarkupTextNormalColor 52 | 1 1 1 1 53 | DVTMarkupTextNormalFont 54 | .AppleSystemUIFont - 11.0 55 | DVTMarkupTextOtherHeadingColor 56 | 1 1 1 0.5 57 | DVTMarkupTextOtherHeadingFont 58 | .AppleSystemUIFont - 15.0 59 | DVTMarkupTextPrimaryHeadingColor 60 | 1 1 1 1 61 | DVTMarkupTextPrimaryHeadingFont 62 | .AppleSystemUIFont - 25.0 63 | DVTMarkupTextSecondaryHeadingColor 64 | 1 1 1 1 65 | DVTMarkupTextSecondaryHeadingFont 66 | .AppleSystemUIFont - 19.0 67 | DVTMarkupTextStrongColor 68 | 1 1 1 1 69 | DVTMarkupTextStrongFont 70 | .AppleSystemUIFontBold - 11.0 71 | DVTScrollbarMarkerAnalyzerColor 72 | 0.403922 0.372549 1 1 73 | DVTScrollbarMarkerBreakpointColor 74 | 0.290196 0.290196 0.968627 1 75 | DVTScrollbarMarkerDiffColor 76 | 0.556863 0.556863 0.556863 1 77 | DVTScrollbarMarkerDiffConflictColor 78 | 0.968627 0.290196 0.290196 1 79 | DVTScrollbarMarkerErrorColor 80 | 0.968627 0.290196 0.290196 1 81 | DVTScrollbarMarkerRuntimeIssueColor 82 | 0.643137 0.509804 1 1 83 | DVTScrollbarMarkerWarningColor 84 | 0.937255 0.717647 0.34902 1 85 | DVTSourceTextBackground 86 | 0.0705882 0 0.133333 1 87 | DVTSourceTextBlockDimBackgroundColor 88 | 0.5 0.5 0.5 1 89 | DVTSourceTextCurrentLineHighlightColor 90 | 0.192157 0.121569 0.258824 1 91 | DVTSourceTextInsertionPointColor 92 | 1 1 1 1 93 | DVTSourceTextInvisiblesColor 94 | 0.2 0.2 0.2 1 95 | DVTSourceTextSelectionColor 96 | 0.117647 0.164706 0.309804 1 97 | DVTSourceTextSyntaxColors 98 | 99 | xcode.syntax.attribute 100 | 0.177359 0.265488 0.608972 1 101 | xcode.syntax.character 102 | 0.470588 0.427451 1 1 103 | xcode.syntax.comment 104 | 0.498039 0.498039 0.498039 1 105 | xcode.syntax.comment.doc 106 | 0.498039 0.498039 0.498039 1 107 | xcode.syntax.comment.doc.keyword 108 | 0.501961 0.498039 0.498039 1 109 | xcode.syntax.identifier.class 110 | 0.172549 1 0.2 1 111 | xcode.syntax.identifier.class.system 112 | 0.117647 0.921569 1 1 113 | xcode.syntax.identifier.constant 114 | 0.132108 1 0.256586 1 115 | xcode.syntax.identifier.constant.system 116 | 0.117039 0.920157 0.998924 1 117 | xcode.syntax.identifier.function 118 | 0.133333 1 0.254902 1 119 | xcode.syntax.identifier.function.system 120 | 0.117647 0.921569 1 1 121 | xcode.syntax.identifier.macro 122 | 0.896 0.488 0.284 1 123 | xcode.syntax.identifier.macro.system 124 | 0.896 0.488 0.284 1 125 | xcode.syntax.identifier.type 126 | 0.133333 1 0.254902 1 127 | xcode.syntax.identifier.type.system 128 | 0.117039 0.920157 0.998924 1 129 | xcode.syntax.identifier.variable 130 | 0.133333 1 0.254902 1 131 | xcode.syntax.identifier.variable.system 132 | 0.117039 0.920157 0.998924 1 133 | xcode.syntax.keyword 134 | 0.945098 0 1 1 135 | xcode.syntax.number 136 | 0.469 0.426 1 1 137 | xcode.syntax.plain 138 | 1 1 1 1 139 | xcode.syntax.preprocessor 140 | 0.896 0.488 0.284 1 141 | xcode.syntax.string 142 | 0.976471 0.92549 0.0705882 1 143 | xcode.syntax.url 144 | 0.255 0.392 1 1 145 | 146 | DVTSourceTextSyntaxFonts 147 | 148 | xcode.syntax.attribute 149 | SFMono-Semibold - 14.0 150 | xcode.syntax.character 151 | SFMono-Semibold - 14.0 152 | xcode.syntax.comment 153 | SFMono-SemiboldItalic - 14.0 154 | xcode.syntax.comment.doc 155 | SFMono-SemiboldItalic - 14.0 156 | xcode.syntax.comment.doc.keyword 157 | SFMono-SemiboldItalic - 14.0 158 | xcode.syntax.identifier.class 159 | SFMono-Semibold - 14.0 160 | xcode.syntax.identifier.class.system 161 | SFMono-Semibold - 14.0 162 | xcode.syntax.identifier.constant 163 | SFMono-Semibold - 14.0 164 | xcode.syntax.identifier.constant.system 165 | SFMono-Semibold - 14.0 166 | xcode.syntax.identifier.function 167 | SFMono-Semibold - 14.0 168 | xcode.syntax.identifier.function.system 169 | SFMono-Semibold - 14.0 170 | xcode.syntax.identifier.macro 171 | SFMono-Semibold - 14.0 172 | xcode.syntax.identifier.macro.system 173 | SFMono-Semibold - 14.0 174 | xcode.syntax.identifier.type 175 | SFMono-Semibold - 14.0 176 | xcode.syntax.identifier.type.system 177 | SFMono-Semibold - 14.0 178 | xcode.syntax.identifier.variable 179 | SFMono-Semibold - 14.0 180 | xcode.syntax.identifier.variable.system 181 | SFMono-Semibold - 14.0 182 | xcode.syntax.keyword 183 | SFMono-Semibold - 14.0 184 | xcode.syntax.number 185 | SFMono-Semibold - 14.0 186 | xcode.syntax.plain 187 | SFMono-Semibold - 14.0 188 | xcode.syntax.preprocessor 189 | SFMono-Semibold - 14.0 190 | xcode.syntax.string 191 | SFMono-Semibold - 14.0 192 | xcode.syntax.url 193 | SFMono-Semibold - 14.0 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /Loco-Dark-Theme/Loco Dark Medium.xccolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 1 1 1 1 7 | DVTConsoleDebuggerInputTextFont 8 | JetBrainsMono-Bold - 18.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 1 1 1 1 11 | DVTConsoleDebuggerOutputTextFont 12 | JetBrainsMono-Bold - 18.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.255 0.714 0.27 1 15 | DVTConsoleDebuggerPromptTextFont 16 | JetBrainsMono-Bold - 18.0 17 | DVTConsoleExectuableInputTextColor 18 | 1 1 1 1 19 | DVTConsoleExectuableInputTextFont 20 | JetBrainsMono-Bold - 18.0 21 | DVTConsoleExectuableOutputTextColor 22 | 1 1 1 1 23 | DVTConsoleExectuableOutputTextFont 24 | JetBrainsMono-Bold - 18.0 25 | DVTConsoleTextBackgroundColor 26 | 0.0705882 0.0627451 0.0901961 0.849636 27 | DVTConsoleTextInsertionPointColor 28 | 1 1 1 1 29 | DVTConsoleTextSelectionColor 30 | 0.317647 0.356862 0.439215 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.12 0.31 0.34 1 33 | DVTFontAndColorVersion 34 | 1 35 | DVTLineSpacing 36 | 1.1000000238418579 37 | DVTMarkupTextBackgroundColor 38 | 0.18856 0.195 0.22444 1 39 | DVTMarkupTextBorderColor 40 | 0.253475 0.2594 0.286485 1 41 | DVTMarkupTextCodeFont 42 | SFMono-Regular - 10.0 43 | DVTMarkupTextEmphasisColor 44 | 1 1 1 1 45 | DVTMarkupTextEmphasisFont 46 | .SFNS-RegularItalic - 19.0 47 | DVTMarkupTextInlineCodeColor 48 | 1 1 1 0.7 49 | DVTMarkupTextLinkColor 50 | 0.33 0.247124 0.894195 1 51 | DVTMarkupTextLinkFont 52 | .SFNS-Regular - 19.0 53 | DVTMarkupTextNormalColor 54 | 1 1 1 1 55 | DVTMarkupTextNormalFont 56 | .SFNS-Regular - 19.0 57 | DVTMarkupTextOtherHeadingColor 58 | 1 1 1 0.5 59 | DVTMarkupTextOtherHeadingFont 60 | .SFNS-Regular - 26.6 61 | DVTMarkupTextPrimaryHeadingColor 62 | 1 1 1 1 63 | DVTMarkupTextPrimaryHeadingFont 64 | .SFNS-Regular - 45.6 65 | DVTMarkupTextSecondaryHeadingColor 66 | 1 1 1 1 67 | DVTMarkupTextSecondaryHeadingFont 68 | .SFNS-Regular - 34.2 69 | DVTMarkupTextStrongColor 70 | 1 1 1 1 71 | DVTMarkupTextStrongFont 72 | .SFNS-Bold - 19.0 73 | DVTScrollbarMarkerAnalyzerColor 74 | 0.403922 0.372549 1 1 75 | DVTScrollbarMarkerBreakpointColor 76 | 0.290196 0.290196 0.968627 1 77 | DVTScrollbarMarkerDiffColor 78 | 0.556863 0.556863 0.556863 1 79 | DVTScrollbarMarkerDiffConflictColor 80 | 0.968627 0.290196 0.290196 1 81 | DVTScrollbarMarkerErrorColor 82 | 0.968627 0.290196 0.290196 1 83 | DVTScrollbarMarkerRuntimeIssueColor 84 | 0.643137 0.509804 1 1 85 | DVTScrollbarMarkerWarningColor 86 | 0.937255 0.717647 0.34902 1 87 | DVTSourceTextBackground 88 | 0.0745098 0.0627451 0.0862745 1 89 | DVTSourceTextBlockDimBackgroundColor 90 | 0.5 0.5 0.5 1 91 | DVTSourceTextCurrentLineHighlightColor 92 | 0.138526 0.146864 0.169283 1 93 | DVTSourceTextInsertionPointColor 94 | 1 1 1 1 95 | DVTSourceTextInvisiblesColor 96 | 0.258298 0.300954 0.355207 1 97 | DVTSourceTextSelectionColor 98 | 0.317647 0.356862 0.439215 1 99 | DVTSourceTextSyntaxColors 100 | 101 | xcode.syntax.attribute 102 | 0.176471 0.266667 0.607843 1 103 | xcode.syntax.character 104 | 0.470588 0.427451 1 1 105 | xcode.syntax.comment 106 | 0.423943 0.474618 0.525183 1 107 | xcode.syntax.comment.doc 108 | 0.423943 0.474618 0.525183 1 109 | xcode.syntax.comment.doc.keyword 110 | 0.572549 0.631373 0.694118 1 111 | xcode.syntax.declaration.other 112 | 0.254902 0.631373 0.752941 1 113 | xcode.syntax.declaration.type 114 | 0.362946 0.846428 0.998966 1 115 | xcode.syntax.identifier.class 116 | 0.815686 0.658824 1 1 117 | xcode.syntax.identifier.class.system 118 | 0.5 1 0.516588 1 119 | xcode.syntax.identifier.constant 120 | 0.631373 0.403922 0.901961 1 121 | xcode.syntax.identifier.constant.system 122 | 0.121569 0.701961 0.141176 1 123 | xcode.syntax.identifier.function 124 | 0.631373 0.403922 0.901961 1 125 | xcode.syntax.identifier.function.system 126 | 0.121569 0.701961 0.141176 1 127 | xcode.syntax.identifier.macro 128 | 0.991311 0.560764 0.246107 1 129 | xcode.syntax.identifier.macro.system 130 | 0.992157 0.560784 0.247059 1 131 | xcode.syntax.identifier.type 132 | 0.815686 0.658824 1 1 133 | xcode.syntax.identifier.type.system 134 | 0.5 1 0.516588 1 135 | xcode.syntax.identifier.variable 136 | 0.631373 0.403922 0.901961 1 137 | xcode.syntax.identifier.variable.system 138 | 0.121569 0.701961 0.141176 1 139 | xcode.syntax.keyword 140 | 0.988394 0.37355 0.638329 1 141 | xcode.syntax.mark 142 | 0.572549 0.631373 0.694118 1 143 | xcode.syntax.markup.code 144 | 0.665 0.052 0.569 1 145 | xcode.syntax.number 146 | 0.470588 0.427451 1 1 147 | xcode.syntax.plain 148 | 1 1 1 0.85 149 | xcode.syntax.preprocessor 150 | 0.995808 0.800103 0.399985 1 151 | xcode.syntax.string 152 | 0.976471 0.92549 0.0705882 1 153 | xcode.syntax.url 154 | 0.330191 0.511266 0.998589 1 155 | 156 | DVTSourceTextSyntaxFonts 157 | 158 | xcode.syntax.attribute 159 | JetBrainsMono-Medium - 22.0 160 | xcode.syntax.character 161 | JetBrainsMono-Medium - 22.0 162 | xcode.syntax.comment 163 | JetBrainsMono-MediumItalic - 22.0 164 | xcode.syntax.comment.doc 165 | JetBrainsMono-MediumItalic - 22.0 166 | xcode.syntax.comment.doc.keyword 167 | JetBrainsMono-MediumItalic - 22.0 168 | xcode.syntax.declaration.other 169 | JetBrainsMono-Medium - 22.0 170 | xcode.syntax.declaration.type 171 | JetBrainsMono-Medium - 22.0 172 | xcode.syntax.identifier.class 173 | JetBrainsMono-Medium - 22.0 174 | xcode.syntax.identifier.class.system 175 | JetBrainsMono-Medium - 22.0 176 | xcode.syntax.identifier.constant 177 | JetBrainsMono-Medium - 22.0 178 | xcode.syntax.identifier.constant.system 179 | JetBrainsMono-Medium - 22.0 180 | xcode.syntax.identifier.function 181 | JetBrainsMono-Medium - 22.0 182 | xcode.syntax.identifier.function.system 183 | JetBrainsMono-Medium - 22.0 184 | xcode.syntax.identifier.macro 185 | JetBrainsMono-Medium - 22.0 186 | xcode.syntax.identifier.macro.system 187 | JetBrainsMono-Medium - 22.0 188 | xcode.syntax.identifier.type 189 | JetBrainsMono-Medium - 22.0 190 | xcode.syntax.identifier.type.system 191 | JetBrainsMono-Medium - 22.0 192 | xcode.syntax.identifier.variable 193 | JetBrainsMono-Medium - 22.0 194 | xcode.syntax.identifier.variable.system 195 | JetBrainsMono-Medium - 22.0 196 | xcode.syntax.keyword 197 | JetBrainsMono-Medium - 22.0 198 | xcode.syntax.mark 199 | JetBrainsMono-Medium - 22.0 200 | xcode.syntax.markup.code 201 | JetBrainsMono-Medium - 22.0 202 | xcode.syntax.number 203 | JetBrainsMono-Medium - 22.0 204 | xcode.syntax.plain 205 | JetBrainsMono-Medium - 22.0 206 | xcode.syntax.preprocessor 207 | JetBrainsMono-Medium - 22.0 208 | xcode.syntax.string 209 | JetBrainsMono-Medium - 22.0 210 | xcode.syntax.url 211 | JetBrainsMono-Medium - 22.0 212 | 213 | 214 | 215 | -------------------------------------------------------------------------------- /Loco-Dark-Theme/Loco Dark.xccolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 1 1 1 1 7 | DVTConsoleDebuggerInputTextFont 8 | JetBrainsMono-Bold - 14.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 1 1 1 1 11 | DVTConsoleDebuggerOutputTextFont 12 | JetBrainsMono-Bold - 14.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.255 0.714 0.27 1 15 | DVTConsoleDebuggerPromptTextFont 16 | JetBrainsMono-Bold - 14.0 17 | DVTConsoleExectuableInputTextColor 18 | 1 1 1 1 19 | DVTConsoleExectuableInputTextFont 20 | JetBrainsMono-Bold - 14.0 21 | DVTConsoleExectuableOutputTextColor 22 | 1 1 1 1 23 | DVTConsoleExectuableOutputTextFont 24 | JetBrainsMono-Bold - 14.0 25 | DVTConsoleTextBackgroundColor 26 | 0.0705882 0.0627451 0.0901961 0.852178 27 | DVTConsoleTextInsertionPointColor 28 | 1 1 1 1 29 | DVTConsoleTextSelectionColor 30 | 0.317647 0.356862 0.439215 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.12 0.31 0.34 1 33 | DVTFontAndColorVersion 34 | 1 35 | DVTLineSpacing 36 | 1.1000000238418579 37 | DVTMarkupTextBackgroundColor 38 | 0.18856 0.195 0.22444 1 39 | DVTMarkupTextBorderColor 40 | 0.253475 0.2594 0.286485 1 41 | DVTMarkupTextCodeFont 42 | SFMono-Regular - 10.0 43 | DVTMarkupTextEmphasisColor 44 | 1 1 1 1 45 | DVTMarkupTextEmphasisFont 46 | .SFNS-RegularItalic - 13.0 47 | DVTMarkupTextInlineCodeColor 48 | 1 1 1 0.7 49 | DVTMarkupTextLinkColor 50 | 0.33 0.247124 0.894195 1 51 | DVTMarkupTextLinkFont 52 | .SFNS-Regular - 13.0 53 | DVTMarkupTextNormalColor 54 | 1 1 1 1 55 | DVTMarkupTextNormalFont 56 | .SFNS-Regular - 13.0 57 | DVTMarkupTextOtherHeadingColor 58 | 1 1 1 0.5 59 | DVTMarkupTextOtherHeadingFont 60 | .SFNS-Regular - 18.2 61 | DVTMarkupTextPrimaryHeadingColor 62 | 1 1 1 1 63 | DVTMarkupTextPrimaryHeadingFont 64 | .SFNS-Regular - 31.2 65 | DVTMarkupTextSecondaryHeadingColor 66 | 1 1 1 1 67 | DVTMarkupTextSecondaryHeadingFont 68 | .SFNS-Regular - 23.4 69 | DVTMarkupTextStrongColor 70 | 1 1 1 1 71 | DVTMarkupTextStrongFont 72 | .SFNS-Bold - 13.0 73 | DVTScrollbarMarkerAnalyzerColor 74 | 0.403922 0.372549 1 1 75 | DVTScrollbarMarkerBreakpointColor 76 | 0.290196 0.290196 0.968627 1 77 | DVTScrollbarMarkerDiffColor 78 | 0.556863 0.556863 0.556863 1 79 | DVTScrollbarMarkerDiffConflictColor 80 | 0.968627 0.290196 0.290196 1 81 | DVTScrollbarMarkerErrorColor 82 | 0.968627 0.290196 0.290196 1 83 | DVTScrollbarMarkerRuntimeIssueColor 84 | 0.643137 0.509804 1 1 85 | DVTScrollbarMarkerWarningColor 86 | 0.937255 0.717647 0.34902 1 87 | DVTSourceTextBackground 88 | 0.0745098 0.0627451 0.0862745 1 89 | DVTSourceTextBlockDimBackgroundColor 90 | 0.5 0.5 0.5 1 91 | DVTSourceTextCurrentLineHighlightColor 92 | 0.138526 0.146864 0.169283 1 93 | DVTSourceTextInsertionPointColor 94 | 1 1 1 1 95 | DVTSourceTextInvisiblesColor 96 | 0.258298 0.300954 0.355207 1 97 | DVTSourceTextSelectionColor 98 | 0.317647 0.356862 0.439215 1 99 | DVTSourceTextSyntaxColors 100 | 101 | xcode.syntax.attribute 102 | 0.176471 0.266667 0.607843 1 103 | xcode.syntax.character 104 | 0.470588 0.427451 1 1 105 | xcode.syntax.comment 106 | 0.423943 0.474618 0.525183 1 107 | xcode.syntax.comment.doc 108 | 0.423943 0.474618 0.525183 1 109 | xcode.syntax.comment.doc.keyword 110 | 0.572549 0.631373 0.694118 1 111 | xcode.syntax.declaration.other 112 | 0.254902 0.631373 0.752941 1 113 | xcode.syntax.declaration.type 114 | 0.364706 0.847059 1 1 115 | xcode.syntax.identifier.class 116 | 0.815686 0.658824 1 1 117 | xcode.syntax.identifier.class.system 118 | 0.501961 1 0.518562 1 119 | xcode.syntax.identifier.constant 120 | 0.631373 0.403922 0.901961 1 121 | xcode.syntax.identifier.constant.system 122 | 0.121569 0.701961 0.141176 1 123 | xcode.syntax.identifier.function 124 | 0.631373 0.403922 0.901961 1 125 | xcode.syntax.identifier.function.system 126 | 0.121569 0.701961 0.141176 1 127 | xcode.syntax.identifier.macro 128 | 0.991311 0.560764 0.246107 1 129 | xcode.syntax.identifier.macro.system 130 | 0.992157 0.560784 0.247059 1 131 | xcode.syntax.identifier.type 132 | 0.815686 0.658824 1 1 133 | xcode.syntax.identifier.type.system 134 | 0.501961 1 0.517647 1 135 | xcode.syntax.identifier.variable 136 | 0.631373 0.403922 0.901961 1 137 | xcode.syntax.identifier.variable.system 138 | 0.121569 0.701961 0.141176 1 139 | xcode.syntax.keyword 140 | 0.988235 0.372549 0.639216 1 141 | xcode.syntax.mark 142 | 0.572549 0.631373 0.694118 1 143 | xcode.syntax.markup.code 144 | 0.665 0.052 0.569 1 145 | xcode.syntax.number 146 | 0.470588 0.427451 1 1 147 | xcode.syntax.plain 148 | 1 1 1 1 149 | xcode.syntax.preprocessor 150 | 0.996078 0.8 0.4 1 151 | xcode.syntax.string 152 | 0.976471 0.92549 0.0705882 1 153 | xcode.syntax.url 154 | 0.330191 0.511266 0.998589 1 155 | 156 | DVTSourceTextSyntaxFonts 157 | 158 | xcode.syntax.attribute 159 | JetBrainsMono-Medium - 14.0 160 | xcode.syntax.character 161 | JetBrainsMono-Medium - 14.0 162 | xcode.syntax.comment 163 | JetBrainsMono-MediumItalic - 14.0 164 | xcode.syntax.comment.doc 165 | JetBrainsMono-MediumItalic - 14.0 166 | xcode.syntax.comment.doc.keyword 167 | JetBrainsMono-MediumItalic - 14.0 168 | xcode.syntax.declaration.other 169 | JetBrainsMono-Medium - 14.0 170 | xcode.syntax.declaration.type 171 | JetBrainsMono-Medium - 14.0 172 | xcode.syntax.identifier.class 173 | JetBrainsMono-Medium - 14.0 174 | xcode.syntax.identifier.class.system 175 | JetBrainsMono-Medium - 14.0 176 | xcode.syntax.identifier.constant 177 | JetBrainsMono-Medium - 14.0 178 | xcode.syntax.identifier.constant.system 179 | JetBrainsMono-Medium - 14.0 180 | xcode.syntax.identifier.function 181 | JetBrainsMono-Medium - 14.0 182 | xcode.syntax.identifier.function.system 183 | JetBrainsMono-Medium - 14.0 184 | xcode.syntax.identifier.macro 185 | JetBrainsMono-Medium - 14.0 186 | xcode.syntax.identifier.macro.system 187 | JetBrainsMono-Medium - 14.0 188 | xcode.syntax.identifier.type 189 | JetBrainsMono-Medium - 14.0 190 | xcode.syntax.identifier.type.system 191 | JetBrainsMono-Medium - 14.0 192 | xcode.syntax.identifier.variable 193 | JetBrainsMono-Medium - 14.0 194 | xcode.syntax.identifier.variable.system 195 | JetBrainsMono-Medium - 14.0 196 | xcode.syntax.keyword 197 | JetBrainsMono-Medium - 14.0 198 | xcode.syntax.mark 199 | JetBrainsMono-Medium - 14.0 200 | xcode.syntax.markup.code 201 | JetBrainsMono-Medium - 14.0 202 | xcode.syntax.number 203 | JetBrainsMono-Medium - 14.0 204 | xcode.syntax.plain 205 | JetBrainsMono-Medium - 14.0 206 | xcode.syntax.preprocessor 207 | JetBrainsMono-Medium - 14.0 208 | xcode.syntax.string 209 | JetBrainsMono-Medium - 14.0 210 | xcode.syntax.url 211 | JetBrainsMono-Medium - 14.0 212 | 213 | 214 | 215 | -------------------------------------------------------------------------------- /Loco-Light-Theme/Loco Light.xccolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 0 0 0 1 7 | DVTConsoleDebuggerInputTextFont 8 | SFMono-Bold - 12.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 0 0 0 1 11 | DVTConsoleDebuggerOutputTextFont 12 | SFMono-Medium - 12.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.317071 0.437736 1 1 15 | DVTConsoleDebuggerPromptTextFont 16 | SFMono-Bold - 12.0 17 | DVTConsoleExectuableInputTextColor 18 | 0 0 0 1 19 | DVTConsoleExectuableInputTextFont 20 | SFMono-Medium - 12.0 21 | DVTConsoleExectuableOutputTextColor 22 | 0 0 0 1 23 | DVTConsoleExectuableOutputTextFont 24 | SFMono-Bold - 12.0 25 | DVTConsoleTextBackgroundColor 26 | 1 1 1 1 27 | DVTConsoleTextInsertionPointColor 28 | 0 0 0 1 29 | DVTConsoleTextSelectionColor 30 | 0.642038 0.802669 0.999195 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.705792 0.8 0.544 1 33 | DVTLineSpacing 34 | 1.1000000238418579 35 | DVTMarkupTextBackgroundColor 36 | 0.96 0.96 0.96 1 37 | DVTMarkupTextBorderColor 38 | 0.8832 0.8832 0.8832 1 39 | DVTMarkupTextCodeFont 40 | SFMono-Regular - 10.0 41 | DVTMarkupTextEmphasisColor 42 | 0 0 0 1 43 | DVTMarkupTextEmphasisFont 44 | .SFNSText-Italic - 10.0 45 | DVTMarkupTextInlineCodeColor 46 | 0 0 0 0.7 47 | DVTMarkupTextLinkColor 48 | 0.055 0.055 1 1 49 | DVTMarkupTextLinkFont 50 | .SFNSText - 10.0 51 | DVTMarkupTextNormalColor 52 | 0 0 0 1 53 | DVTMarkupTextNormalFont 54 | .SFNSText - 10.0 55 | DVTMarkupTextOtherHeadingColor 56 | 0 0 0 0.5 57 | DVTMarkupTextOtherHeadingFont 58 | .SFNSText - 14.0 59 | DVTMarkupTextPrimaryHeadingColor 60 | 0 0 0 1 61 | DVTMarkupTextPrimaryHeadingFont 62 | .SFNSDisplay - 24.0 63 | DVTMarkupTextSecondaryHeadingColor 64 | 0 0 0 1 65 | DVTMarkupTextSecondaryHeadingFont 66 | .SFNSText - 18.0 67 | DVTMarkupTextStrongColor 68 | 0 0 0 1 69 | DVTMarkupTextStrongFont 70 | .SFNSText-Bold - 10.0 71 | DVTScrollbarMarkerAnalyzerColor 72 | 0.403922 0.372549 1 1 73 | DVTScrollbarMarkerBreakpointColor 74 | 0.290196 0.290196 0.968627 1 75 | DVTScrollbarMarkerDiffColor 76 | 0.556863 0.556863 0.556863 1 77 | DVTScrollbarMarkerDiffConflictColor 78 | 0.968627 0.290196 0.290196 1 79 | DVTScrollbarMarkerErrorColor 80 | 0.968627 0.290196 0.290196 1 81 | DVTScrollbarMarkerRuntimeIssueColor 82 | 0.643137 0.509804 1 1 83 | DVTScrollbarMarkerWarningColor 84 | 0.937255 0.717647 0.34902 1 85 | DVTSourceTextBackground 86 | 1 1 1 1 87 | DVTSourceTextBlockDimBackgroundColor 88 | 0.424672 0.424672 0.424672 1 89 | DVTSourceTextCurrentLineHighlightColor 90 | 0.909804 0.94902 1 1 91 | DVTSourceTextInsertionPointColor 92 | 0 0 0 1 93 | DVTSourceTextInvisiblesColor 94 | 0.8 0.8 0.8 1 95 | DVTSourceTextSelectionColor 96 | 0.642038 0.802669 0.999195 1 97 | DVTSourceTextSyntaxColors 98 | 99 | xcode.syntax.attribute 100 | 0.505801 0.371396 0.012096 1 101 | xcode.syntax.character 102 | 0.11 0 0.81 1 103 | xcode.syntax.comment 104 | 0.324006 0.397454 0.475066 1 105 | xcode.syntax.comment.doc 106 | 0.247901 0.313353 0.382892 1 107 | xcode.syntax.comment.doc.keyword 108 | 0.247901 0.313353 0.382892 1 109 | xcode.syntax.identifier.class 110 | 0.194184 0.429349 0.454553 1 111 | xcode.syntax.identifier.class.system 112 | 0.359223 0.148247 0.601912 1 113 | xcode.syntax.identifier.constant 114 | 0.139236 0.320519 0.336839 1 115 | xcode.syntax.identifier.constant.system 116 | 0.224543 0 0.628029 1 117 | xcode.syntax.identifier.function 118 | 0.139236 0.320519 0.336839 1 119 | xcode.syntax.identifier.function.system 120 | 0.224543 0 0.628029 1 121 | xcode.syntax.identifier.macro 122 | 0.391471 0.220311 0.124457 1 123 | xcode.syntax.identifier.macro.system 124 | 0.391471 0.220311 0.124457 1 125 | xcode.syntax.identifier.type 126 | 0.194184 0.429349 0.454553 1 127 | xcode.syntax.identifier.type.system 128 | 0.359223 0.148247 0.601912 1 129 | xcode.syntax.identifier.variable 130 | 0.194184 0.429349 0.454553 1 131 | xcode.syntax.identifier.variable.system 132 | 0.359223 0.148247 0.601912 1 133 | xcode.syntax.keyword 134 | 0.607592 0.137526 0.576284 1 135 | xcode.syntax.number 136 | 0.11 0 0.81 1 137 | xcode.syntax.plain 138 | 0 0 0 1 139 | xcode.syntax.preprocessor 140 | 0.391471 0.220311 0.124457 1 141 | xcode.syntax.string 142 | 0.77 0.102 0.086 1 143 | xcode.syntax.url 144 | 0.055 0.055 1 1 145 | 146 | DVTSourceTextSyntaxFonts 147 | 148 | xcode.syntax.attribute 149 | SFMono-Semibold - 14.0 150 | xcode.syntax.character 151 | SFMono-Semibold - 14.0 152 | xcode.syntax.comment 153 | SFMono-SemiboldItalic - 14.0 154 | xcode.syntax.comment.doc 155 | SFMono-SemiboldItalic - 14.0 156 | xcode.syntax.comment.doc.keyword 157 | SFMono-SemiboldItalic - 14.0 158 | xcode.syntax.identifier.class 159 | SFMono-Semibold - 14.0 160 | xcode.syntax.identifier.class.system 161 | SFMono-Semibold - 14.0 162 | xcode.syntax.identifier.constant 163 | SFMono-Semibold - 14.0 164 | xcode.syntax.identifier.constant.system 165 | SFMono-Semibold - 14.0 166 | xcode.syntax.identifier.function 167 | SFMono-Semibold - 14.0 168 | xcode.syntax.identifier.function.system 169 | SFMono-Semibold - 14.0 170 | xcode.syntax.identifier.macro 171 | SFMono-Semibold - 14.0 172 | xcode.syntax.identifier.macro.system 173 | SFMono-Semibold - 14.0 174 | xcode.syntax.identifier.type 175 | SFMono-Semibold - 14.0 176 | xcode.syntax.identifier.type.system 177 | SFMono-Semibold - 14.0 178 | xcode.syntax.identifier.variable 179 | SFMono-Semibold - 14.0 180 | xcode.syntax.identifier.variable.system 181 | SFMono-Semibold - 14.0 182 | xcode.syntax.keyword 183 | SFMono-Semibold - 14.0 184 | xcode.syntax.number 185 | SFMono-Semibold - 14.0 186 | xcode.syntax.plain 187 | SFMono-Semibold - 14.0 188 | xcode.syntax.preprocessor 189 | SFMono-Semibold - 14.0 190 | xcode.syntax.string 191 | SFMono-Semibold - 14.0 192 | xcode.syntax.url 193 | SFMono-Semibold - 14.0 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | @chmod +x install.sh 3 | @./install.sh 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Kilo Loco Xcode Theme 2 | 3 | ![Theme Example](/images/kiloLocoRegular.png) 4 | 5 | Installation 6 | ---- 7 | 8 | ### Using the installation script 9 | 10 | $ git clone https://github.com/Kilo-Loco/KiloLocoXcodeTheme 11 | $ cd KiloLocoXcodeTheme 12 | $ make # And then restart Xcode 13 | 14 | ### Alternative way 15 | 16 | $ git clone https://github.com/Kilo-Loco/KiloLocoXcodeTheme.git 17 | $ cd KiloLocoXcodeTheme 18 | $ mkdir -p ~/Library/Developer/Xcode/UserData/FontAndColorThemes/ 19 | $ cp **/*.xccolortheme ~/Library/Developer/Xcode/UserData/FontAndColorThemes/ 20 | # And then restart Xcode 21 | -------------------------------------------------------------------------------- /images/kiloLocoRegular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/KiloLocoXcodeTheme/84d35c46469d3142b0178a6d8c1656f9c8c0d697/images/kiloLocoRegular.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | mkdir -p ~/Library/Developer/Xcode/UserData/FontAndColorThemes/ 4 | cp **/*.xccolortheme ~/Library/Developer/Xcode/UserData/FontAndColorThemes/ 5 | --------------------------------------------------------------------------------