├── Readme.md ├── dvtcolorconvert.rb ├── Humane.dvtcolortheme ├── Solarize Light.dvtcolortheme ├── Solarize Dark.dvtcolortheme ├── ObsidianCode.dvtcolortheme └── Solarize Dark+LightC.dvtcolortheme /Readme.md: -------------------------------------------------------------------------------- 1 | Xcode 4 Themes 2 | ============== 3 | 4 | This repository contains and handful themes I've found useful when working with Xcode 4, in addition to a Ruby script I've discovered to help convert Xcode 3 themes into the format required by Xcode 4. 5 | 6 | The themes 7 | ---------- 8 | 9 | * Solarized Light & Dark: Both themes are based off the amazing work for the original [Solarized theme] [solar]. Github user [varikin] [] took the Solarized palette and made the [Solarize Dark theme] [varikin] for Xcode 4. I forked his repository and added the Solarize Light theme as well. I'm including both in this repository, but both have been pushed back upstream to his repo. 10 | 11 | ![Solarize Light] [light] 12 | ![Solarize Dark] [dark] 13 | 14 | * Humane (modified): This theme was originally made for Xcode 3 by [Damien Guard] [humane]. I've made some modifications to it (including a switch to Menlo 12 pt. instead of Panic Sans 11 pt., though the two typefaces are nearly identical). 15 | 16 | ![Humane (Modified)] [humane_image] 17 | 18 | * ObsidianCode: A theme made by Ben Scheirman. An Xcode 3 version can be found [here][obsidian_xcode_3]: 19 | 20 | ![Obsidian] [ob] 21 | 22 | 23 | Installation 24 | ------------ 25 | 26 | git clone git@github.com:jbrennan/xcode4themes.git 27 | mkdir -p ~/Library/Developer/Xcode/UserData/FontAndColorThemes/ 28 | cp *.dvtcolortheme ~/Library/Developer/Xcode/UserData/FontAndColorThemes/ 29 | 30 | 31 | Converting Xcode 3 themes 32 | ----------------- 33 | The Ruby script (which is public domain) was found [here] [script] and is being included for convenience. To use it, do the following: 34 | 35 | 1. Install the plist gem with `sudo gem install plist` 36 | 2. Run the script with `./dvtcolorconvert.rb ~/Library/Application Support/Xcode/Color Themes/yourXcode3Theme.xccolortheme` (this directory won't exist unless you've made custom themes for Xcode 3, which could be as simple as duplicating an existing theme). 37 | 3. The converted theme will be in the same directory as the original. 38 | 4. As with installing the other themes, simply copy the converted theme to `~/Library/Developer/Xcode/UserData/FontAndColorThemes/`. 39 | 5. Restart Xcode 4. 40 | 41 | 42 | [script]: http://digitalflapjack.com/blog/2011/jan/24/xcodedpthemes/ 43 | [humane]: http://damieng.com/blog/2008/02/08/humane-theme-for-textmate-and-xcode 44 | [solar]: http://ethanschoonover.com/solarized 45 | [varikin]: https://github.com/varikin/solarized/tree/master/xcode4-colors-solarized 46 | [dark]: http://farm6.static.flickr.com/5062/5592270855_1b26fb726e_o.png "Solarize Dark" 47 | [light]: http://farm6.static.flickr.com/5030/5592863390_04967685db_o.png "Solarize Light" 48 | [humane_image]: http://farm6.static.flickr.com/5306/5592861916_4db32fe976_o.png "Humane (Modified)" 49 | [obsidian_xcode_3]: https://gist.github.com/837656 50 | [ob]: https://img.skitch.com/20110220-qhusp5yejyp6t3k9kkajddi14x.jpg -------------------------------------------------------------------------------- /dvtcolorconvert.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # This script converts xccolorthemes to dtvcolorthemes for porting xcode 3.x themes to xcode 4.x 3 | # created by ashley towns 4 | # Public domain. 5 | # ./dvtcolorconvert 6 | # spits out a .dtvcolortheme file 7 | 8 | require 'rubygems' 9 | require 'plist' 10 | raise "Error: need a source file #{__FILE__} [file.xccolortheme]" if ARGV.length == 0 11 | 12 | def alpha inc, alpha=1 13 | "#{inc} #{alpha}" 14 | end 15 | def convert infile 16 | hash = Plist::parse_xml infile 17 | out_hash = {} 18 | out_hash[:DVTSourceTextSyntaxFonts] = {} 19 | out_hash[:DVTSourceTextSyntaxColors] = {} 20 | hash.each do |name, node| 21 | node.each do |child_name, child| 22 | puts "[on] node:#{name} child:#{child_name}(#{child})" 23 | if name == "Colors" 24 | case child_name 25 | when /Background/ 26 | out_hash[:DVTSourceTextBackground] = alpha child 27 | out_hash[:DVTConsoleTextBackgroundColor] = alpha child 28 | out_hash[:DVTSourceTextInvisiblesColor] = alpha child 29 | out_hash[:DVTSourceTextBlockDimBackgroundColor] = alpha child 30 | when /InsertionPoint/ 31 | out_hash[:DVTSourceTextInsertionPointColor] = alpha child 32 | out_hash[:DVTConsoleTextInsertionPointColor] = alpha child 33 | out_hash[:DVTDebuggerInsutrctionPointerColor] = alpha child 34 | out_hash[:DVTConsoleDebuggerInputTextColor] = alpha child 35 | out_hash[:DVTConsoleDebuggerOutputTextColor] = alpha child 36 | out_hash[:DVTConsoleExectuableInputTextColor] = alpha child 37 | out_hash[:DVTConsoleExecutableOutputTextColor] = alpha child 38 | when /Selection/ 39 | out_hash[:DVTSourceTextSelectionColor] = alpha child 40 | out_hash[:DVTConsoleTextSelectionColor] = alpha child 41 | out_hash[:DVTDebuggerPromptTextColor] = alpha child 42 | else 43 | out_hash[:DVTSourceTextSyntaxColors][child_name] = alpha child 44 | end 45 | elsif name == "Fonts" 46 | case child_name 47 | when /xcode.syntax.plain/ 48 | child = "Inconsolata - 14pt" 49 | out_hash[:DVTConsoleDebuggerInputTextFont] = child 50 | out_hash[:DVTConsoleDebuggerOutputTextFont] = child 51 | out_hash[:DVTConsoleDebuggerPromptTextFont] = child 52 | out_hash[:DVTConsoleExecutableInputTextFont] = child 53 | out_hash[:DVTConsoleExecutableOutputTextFont] = child 54 | out_hash[:DVTSourceTextSyntaxFonts]['xcode.syntax.plain'] = child 55 | else 56 | out_hash[:DVTSourceTextSyntaxFonts][child_name] = "Inconsolata - 14pt" #child 57 | end 58 | else 59 | raise "I don't know what #{name} is." 60 | end 61 | end 62 | end 63 | puts "Saving #{infile.gsub(/xccolortheme/,'dvtcolortheme')}" 64 | fp = File.open(infile.gsub(/xccolortheme/,'dvtcolortheme'),'w') 65 | fp.write out_hash.to_plist 66 | fp.close 67 | end 68 | 69 | convert ARGV[0] 70 | #Dir['*.xccolortheme'].each do |file| 71 | # convert file 72 | #end 73 | -------------------------------------------------------------------------------- /Humane.dvtcolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 0 0 0 1 7 | DVTConsoleDebuggerInputTextFont 8 | Menlo-Bold - 11.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 0 0 0 1 11 | DVTConsoleDebuggerOutputTextFont 12 | Menlo-Regular - 11.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0 0 0 1 15 | DVTConsoleDebuggerPromptTextFont 16 | Menlo-Bold - 11.0 17 | DVTConsoleExectuableInputTextColor 18 | 0 0 0 1 19 | DVTConsoleExectuableInputTextFont 20 | Menlo-Regular - 11.0 21 | DVTConsoleExectuableOutputTextColor 22 | 0 0 0 1 23 | DVTConsoleExectuableOutputTextFont 24 | Menlo-Bold - 11.0 25 | DVTConsoleTextBackgroundColor 26 | 0.89 0.835 0.757 1 27 | DVTConsoleTextInsertionPointColor 28 | 0 0 0 1 29 | DVTConsoleTextSelectionColor 30 | 0.671 0.805 0.989 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.705792 0.8 0.544 1 33 | DVTSourceTextBackground 34 | 0.89 0.835 0.757 1 35 | DVTSourceTextBlockDimBackgroundColor 36 | 0.89 0.835 0.757 1 37 | DVTSourceTextInsertionPointColor 38 | 0 0 0 1 39 | DVTSourceTextInvisiblesColor 40 | 0.89 0.835 0.757 1 41 | DVTSourceTextSelectionColor 42 | 0.671 0.805 0.989 1 43 | DVTSourceTextSyntaxColors 44 | 45 | xcode.syntax.attribute 46 | 0.188 0.373 0.396 1 47 | xcode.syntax.character 48 | 0.145 0.573 0.255 1 49 | xcode.syntax.comment 50 | 0.576 0.478 0.259 1 51 | xcode.syntax.comment.doc 52 | 0.576 0.478 0.259 1 53 | xcode.syntax.comment.doc.keyword 54 | 0.576 0.478 0.259 1 55 | xcode.syntax.identifier.class 56 | 0.188 0.373 0.396 1 57 | xcode.syntax.identifier.class.system 58 | 0.251 0 0.502 1 59 | xcode.syntax.identifier.constant 60 | 0.188 0.373 0.396 1 61 | xcode.syntax.identifier.constant.system 62 | 0.251 0 0.502 1 63 | xcode.syntax.identifier.function 64 | 0.188 0.373 0.396 1 65 | xcode.syntax.identifier.function.system 66 | 0.381 0.195 0.64 1 67 | xcode.syntax.identifier.macro 68 | 0.576 0.478 0.259 1 69 | xcode.syntax.identifier.macro.system 70 | 0.391 0.22 0.125 1 71 | xcode.syntax.identifier.type 72 | 0.188 0.373 0.396 1 73 | xcode.syntax.identifier.type.system 74 | 0.251 0 0.502 1 75 | xcode.syntax.identifier.variable 76 | 0.188 0.373 0.396 1 77 | xcode.syntax.identifier.variable.system 78 | 0.188 0.373 0.396 1 79 | xcode.syntax.keyword 80 | 0.251 0 0.502 1 81 | xcode.syntax.number 82 | 0.145 0.573 0.255 1 83 | xcode.syntax.plain 84 | 0 0 0 1 85 | xcode.syntax.preprocessor 86 | 0.391 0.22 0.125 1 87 | xcode.syntax.string 88 | 0.149 0.262 0.839 1 89 | xcode.syntax.url 90 | 0.145 0.573 0.255 1 91 | 92 | DVTSourceTextSyntaxFonts 93 | 94 | xcode.syntax.plain 95 | Menlo-Regular - 12.0 96 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /Solarize Light.dvtcolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 0 0 0 1 7 | DVTConsoleDebuggerInputTextFont 8 | Menlo-Bold - 11.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 0 0 0 1 11 | DVTConsoleDebuggerOutputTextFont 12 | Menlo-Regular - 11.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0 0 0 1 15 | DVTConsoleDebuggerPromptTextFont 16 | Menlo-Bold - 11.0 17 | DVTConsoleExectuableInputTextColor 18 | 0 0 0 1 19 | DVTConsoleExectuableInputTextFont 20 | Menlo-Regular - 11.0 21 | DVTConsoleExectuableOutputTextColor 22 | 0 0 0 1 23 | DVTConsoleExectuableOutputTextFont 24 | Menlo-Bold - 11.0 25 | DVTConsoleTextBackgroundColor 26 | 1 1 1 1 27 | DVTConsoleTextInsertionPointColor 28 | 0 0 0 1 29 | DVTConsoleTextSelectionColor 30 | 0.96721 0.781227 0.459851 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.705792 0.8 0.544 1 33 | DVTSourceTextBackground 34 | 0.989434 0.957944 0.86406 1 35 | DVTSourceTextBlockDimBackgroundColor 36 | 0.5 0.5 0.5 1 37 | DVTSourceTextInsertionPointColor 38 | 0.505992 0.564858 0.563637 1 39 | DVTSourceTextInvisiblesColor 40 | 0.5 0.5 0.5 1 41 | DVTSourceTextSelectionColor 42 | 0.916111 0.890012 0.797811 1 43 | DVTSourceTextSyntaxColors 44 | 45 | xcode.syntax.attribute 46 | 0.347924 0.351372 0.717917 1 47 | xcode.syntax.character 48 | 0.146795 0.570824 0.525023 1 49 | xcode.syntax.comment 50 | 0.27672 0.35666 0.382985 1 51 | xcode.syntax.comment.doc 52 | 0.27672 0.35666 0.382985 1 53 | xcode.syntax.comment.doc.keyword 54 | 0.27672 0.35666 0.382985 1 55 | xcode.syntax.identifier.class 56 | 0.647465 0.467514 0.0234848 1 57 | xcode.syntax.identifier.class.system 58 | 0.449775 0.541155 0.0202088 1 59 | xcode.syntax.identifier.constant 60 | 0.146795 0.570824 0.525023 1 61 | xcode.syntax.identifier.constant.system 62 | 0.146795 0.570824 0.525023 1 63 | xcode.syntax.identifier.function 64 | 0.146795 0.570824 0.525023 1 65 | xcode.syntax.identifier.function.system 66 | 0.449775 0.541155 0.0202088 1 67 | xcode.syntax.identifier.macro 68 | 0.741763 0.213253 0.0735304 1 69 | xcode.syntax.identifier.macro.system 70 | 0.741763 0.213253 0.0735304 1 71 | xcode.syntax.identifier.type 72 | 0.647465 0.467514 0.0234848 1 73 | xcode.syntax.identifier.type.system 74 | 0.449775 0.541155 0.0202088 1 75 | xcode.syntax.identifier.variable 76 | 0.127549 0.462659 0.782314 1 77 | xcode.syntax.identifier.variable.system 78 | 0.347924 0.351372 0.717917 1 79 | xcode.syntax.keyword 80 | 0.449775 0.541155 0.0202088 1 81 | xcode.syntax.number 82 | 0.146795 0.570824 0.525023 1 83 | xcode.syntax.plain 84 | 0.44058 0.509629 0.516858 1 85 | xcode.syntax.preprocessor 86 | 0.741763 0.213253 0.0735304 1 87 | xcode.syntax.string 88 | 0.146795 0.570824 0.525023 1 89 | xcode.syntax.url 90 | 0.347924 0.351372 0.717917 1 91 | 92 | DVTSourceTextSyntaxFonts 93 | 94 | xcode.syntax.comment 95 | Menlo-Italic - 12.0 96 | xcode.syntax.comment.doc 97 | Menlo-Italic - 12.0 98 | xcode.syntax.comment.doc.keyword 99 | Menlo-Italic - 12.0 100 | xcode.syntax.plain 101 | Menlo-Regular - 12.0 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /Solarize Dark.dvtcolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 0 0 0 1 7 | DVTConsoleDebuggerInputTextFont 8 | Menlo-Bold - 11.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 0 0 0 1 11 | DVTConsoleDebuggerOutputTextFont 12 | Menlo-Regular - 11.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0 0 0 1 15 | DVTConsoleDebuggerPromptTextFont 16 | Menlo-Bold - 11.0 17 | DVTConsoleExectuableInputTextColor 18 | 0 0 0 1 19 | DVTConsoleExectuableInputTextFont 20 | Menlo-Regular - 11.0 21 | DVTConsoleExectuableOutputTextColor 22 | 0 0 0 1 23 | DVTConsoleExectuableOutputTextFont 24 | Menlo-Bold - 11.0 25 | DVTConsoleTextBackgroundColor 26 | 1 1 1 1 27 | DVTConsoleTextInsertionPointColor 28 | 0 0 0 1 29 | DVTConsoleTextSelectionColor 30 | 0.96721 0.781227 0.459851 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.705792 0.8 0.544 1 33 | DVTSourceTextBackground 34 | 0.0159244 0.126521 0.159696 1 35 | DVTSourceTextBlockDimBackgroundColor 36 | 0.5 0.5 0.5 1 37 | DVTSourceTextInsertionPointColor 38 | 0.505992 0.564858 0.563637 1 39 | DVTSourceTextInvisiblesColor 40 | 0.5 0.5 0.5 1 41 | DVTSourceTextSelectionColor 42 | 0.0393807 0.160116 0.198333 1 43 | DVTSourceTextSyntaxColors 44 | 45 | xcode.syntax.attribute 46 | 0.347924 0.351372 0.717917 1 47 | xcode.syntax.character 48 | 0.146795 0.570824 0.525023 1 49 | xcode.syntax.comment 50 | 0.27672 0.35666 0.382985 1 51 | xcode.syntax.comment.doc 52 | 0.27672 0.35666 0.382985 1 53 | xcode.syntax.comment.doc.keyword 54 | 0.27672 0.35666 0.382985 1 55 | xcode.syntax.identifier.class 56 | 0.647465 0.467514 0.0234848 1 57 | xcode.syntax.identifier.class.system 58 | 0.449775 0.541155 0.0202088 1 59 | xcode.syntax.identifier.constant 60 | 0.146795 0.570824 0.525023 1 61 | xcode.syntax.identifier.constant.system 62 | 0.146795 0.570824 0.525023 1 63 | xcode.syntax.identifier.function 64 | 0.146795 0.570824 0.525023 1 65 | xcode.syntax.identifier.function.system 66 | 0.449775 0.541155 0.0202088 1 67 | xcode.syntax.identifier.macro 68 | 0.741763 0.213253 0.0735304 1 69 | xcode.syntax.identifier.macro.system 70 | 0.741763 0.213253 0.0735304 1 71 | xcode.syntax.identifier.type 72 | 0.647465 0.467514 0.0234848 1 73 | xcode.syntax.identifier.type.system 74 | 0.449775 0.541155 0.0202088 1 75 | xcode.syntax.identifier.variable 76 | 0.127549 0.462659 0.782314 1 77 | xcode.syntax.identifier.variable.system 78 | 0.347924 0.351372 0.717917 1 79 | xcode.syntax.keyword 80 | 0.449775 0.541155 0.0202088 1 81 | xcode.syntax.number 82 | 0.146795 0.570824 0.525023 1 83 | xcode.syntax.plain 84 | 0.44058 0.509629 0.516858 1 85 | xcode.syntax.preprocessor 86 | 0.741763 0.213253 0.0735304 1 87 | xcode.syntax.string 88 | 0.146795 0.570824 0.525023 1 89 | xcode.syntax.url 90 | 0.347924 0.351372 0.717917 1 91 | 92 | DVTSourceTextSyntaxFonts 93 | 94 | xcode.syntax.comment 95 | Menlo-Italic - 12.0 96 | xcode.syntax.comment.doc 97 | Menlo-Italic - 12.0 98 | xcode.syntax.comment.doc.keyword 99 | Menlo-Italic - 12.0 100 | xcode.syntax.plain 101 | Menlo-Regular - 12.0 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /ObsidianCode.dvtcolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 0 0 0 1 7 | DVTConsoleDebuggerInputTextFont 8 | Menlo-Bold - 11.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 0 0 0 1 11 | DVTConsoleDebuggerOutputTextFont 12 | Menlo-Regular - 11.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.317071 0.437736 1 1 15 | DVTConsoleDebuggerPromptTextFont 16 | Menlo-Bold - 11.0 17 | DVTConsoleExectuableInputTextColor 18 | 0 0 0 1 19 | DVTConsoleExectuableInputTextFont 20 | Menlo-Regular - 11.0 21 | DVTConsoleExectuableOutputTextColor 22 | 0 0 0 1 23 | DVTConsoleExectuableOutputTextFont 24 | Menlo-Bold - 11.0 25 | DVTConsoleTextBackgroundColor 26 | 0.999899 1 0.999842 1 27 | DVTConsoleTextInsertionPointColor 28 | 0 0 0 1 29 | DVTConsoleTextSelectionColor 30 | 0.576266 0.81005 1 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.705792 0.8 0.544 1 33 | DVTSourceTextBackground 34 | 0.082 0.106 0.114 35 | DVTSourceTextBlockDimBackgroundColor 36 | 0.5 0.5 0.5 1 37 | DVTSourceTextInsertionPointColor 38 | 0.896 0.896 0.896 39 | DVTSourceTextInvisiblesColor 40 | 0.5 0.5 0.5 1 41 | DVTSourceTextSelectionColor 42 | 0.206 0.262 0.302 43 | DVTSourceTextSyntaxColors 44 | 45 | xcode.syntax.attribute 46 | 0.851 0.730 0.398 47 | xcode.syntax.character 48 | 0.000 0.000 0.000 49 | xcode.syntax.comment 50 | 0.471 0.506 0.427 51 | xcode.syntax.comment.doc 52 | 0.471 0.506 0.427 53 | xcode.syntax.comment.doc.keyword 54 | 0.471 0.506 0.427 55 | xcode.syntax.entity 56 | 0.665 0.052 0.569 57 | xcode.syntax.entity.start 58 | 0.665 0.052 0.569 59 | xcode.syntax.identifier 60 | 0.000 0.000 0.000 61 | xcode.syntax.identifier.class 62 | 0.365 0.486 0.616 63 | xcode.syntax.identifier.class.system 64 | 0.365 0.486 0.616 65 | xcode.syntax.identifier.constant 66 | 0.440 0.560 0.738 67 | xcode.syntax.identifier.constant.system 68 | 0.365 0.486 0.616 69 | xcode.syntax.identifier.function 70 | 0.784 0.792 0.816 71 | xcode.syntax.identifier.function.system 72 | 0.365 0.486 0.616 73 | xcode.syntax.identifier.macro 74 | 0.549 0.549 0.714 75 | xcode.syntax.identifier.macro.system 76 | 0.502 0.814 0.795 77 | xcode.syntax.identifier.plain 78 | 0.000 0.000 0.000 79 | xcode.syntax.identifier.type 80 | 0.873 0.752 0.446 81 | xcode.syntax.identifier.type.system 82 | 0.365 0.486 0.616 83 | xcode.syntax.identifier.variable 84 | 0.873 0.752 0.446 85 | xcode.syntax.identifier.variable.system 86 | 0.365 0.486 0.616 87 | xcode.syntax.keyword 88 | 0.569 0.757 0.333 89 | xcode.syntax.number 90 | 0.812 0.671 0.000 91 | xcode.syntax.plain 92 | 0.851 0.851 0.851 93 | xcode.syntax.preprocessor 94 | 0.549 0.549 0.714 95 | xcode.syntax.string 96 | 0.910 0.459 0.000 97 | xcode.syntax.url 98 | 0.640 0.904 1.000 99 | xcode.syntax.url.mail 100 | 0.100 0.100 1.000 101 | 102 | DVTSourceTextSyntaxFonts 103 | 104 | xcode.syntax.attribute 105 | Menlo-Regular - 18.0 106 | xcode.syntax.character 107 | Menlo-Regular - 18.0 108 | xcode.syntax.comment 109 | Menlo-Regular - 18.0 110 | xcode.syntax.comment.doc 111 | Menlo-Regular - 18.0 112 | xcode.syntax.comment.doc.keyword 113 | Menlo-Regular - 18.0 114 | xcode.syntax.keyword 115 | Menlo-Regular - 18.0 116 | xcode.syntax.number 117 | Menlo-Regular - 18.0 118 | xcode.syntax.plain 119 | Menlo-Regular - 18.0 120 | xcode.syntax.preprocessor 121 | Menlo-Regular - 18.0 122 | xcode.syntax.string 123 | Menlo-Regular - 18.0 124 | xcode.syntax.url 125 | Menlo-Regular - 18.0 126 | 127 | 128 | -------------------------------------------------------------------------------- /Solarize Dark+LightC.dvtcolortheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DVTConsoleDebuggerInputTextColor 6 | 0.439216 0.509804 0.517647 1 7 | DVTConsoleDebuggerInputTextFont 8 | Menlo-Bold - 11.0 9 | DVTConsoleDebuggerOutputTextColor 10 | 0.278431 0.356863 0.384314 1 11 | DVTConsoleDebuggerOutputTextFont 12 | Menlo-Regular - 11.0 13 | DVTConsoleDebuggerPromptTextColor 14 | 0.439216 0.509804 0.517647 1 15 | DVTConsoleDebuggerPromptTextFont 16 | Menlo-Bold - 11.0 17 | DVTConsoleExectuableInputTextColor 18 | 0.278431 0.356863 0.384314 1 19 | DVTConsoleExectuableInputTextFont 20 | Menlo-Regular - 11.0 21 | DVTConsoleExectuableOutputTextColor 22 | 0.439216 0.509804 0.517647 1 23 | DVTConsoleExectuableOutputTextFont 24 | Menlo-Bold - 11.0 25 | DVTConsoleTextBackgroundColor 26 | 0.988235 0.956863 0.862745 1 27 | DVTConsoleTextInsertionPointColor 28 | 0.505882 0.564706 0.564706 1 29 | DVTConsoleTextSelectionColor 30 | 0.917647 0.890196 0.796078 1 31 | DVTDebuggerInstructionPointerColor 32 | 0.498039 0.498039 0.498039 1 33 | DVTSourceTextBackground 34 | 0.0159244 0.126521 0.159696 1 35 | DVTSourceTextBlockDimBackgroundColor 36 | 0.5 0.5 0.5 1 37 | DVTSourceTextInsertionPointColor 38 | 0.505992 0.564858 0.563637 1 39 | DVTSourceTextInvisiblesColor 40 | 0.5 0.5 0.5 1 41 | DVTSourceTextSelectionColor 42 | 0.0393807 0.160116 0.198333 1 43 | DVTSourceTextSyntaxColors 44 | 45 | xcode.syntax.attribute 46 | 0.347924 0.351372 0.717917 1 47 | xcode.syntax.character 48 | 0.146795 0.570824 0.525023 1 49 | xcode.syntax.comment 50 | 0.27672 0.35666 0.382985 1 51 | xcode.syntax.comment.doc 52 | 0.27672 0.35666 0.382985 1 53 | xcode.syntax.comment.doc.keyword 54 | 0.27672 0.35666 0.382985 1 55 | xcode.syntax.identifier.class 56 | 0.647465 0.467514 0.0234848 1 57 | xcode.syntax.identifier.class.system 58 | 0.449775 0.541155 0.0202088 1 59 | xcode.syntax.identifier.constant 60 | 0.146795 0.570824 0.525023 1 61 | xcode.syntax.identifier.constant.system 62 | 0.146795 0.570824 0.525023 1 63 | xcode.syntax.identifier.function 64 | 0.146795 0.570824 0.525023 1 65 | xcode.syntax.identifier.function.system 66 | 0.449775 0.541155 0.0202088 1 67 | xcode.syntax.identifier.macro 68 | 0.741763 0.213253 0.0735304 1 69 | xcode.syntax.identifier.macro.system 70 | 0.741763 0.213253 0.0735304 1 71 | xcode.syntax.identifier.type 72 | 0.647465 0.467514 0.0234848 1 73 | xcode.syntax.identifier.type.system 74 | 0.449775 0.541155 0.0202088 1 75 | xcode.syntax.identifier.variable 76 | 0.127549 0.462659 0.782314 1 77 | xcode.syntax.identifier.variable.system 78 | 0.347924 0.351372 0.717917 1 79 | xcode.syntax.keyword 80 | 0.449775 0.541155 0.0202088 1 81 | xcode.syntax.number 82 | 0.146795 0.570824 0.525023 1 83 | xcode.syntax.plain 84 | 0.44058 0.509629 0.516858 1 85 | xcode.syntax.preprocessor 86 | 0.741763 0.213253 0.0735304 1 87 | xcode.syntax.string 88 | 0.146795 0.570824 0.525023 1 89 | xcode.syntax.url 90 | 0.347924 0.351372 0.717917 1 91 | 92 | DVTSourceTextSyntaxFonts 93 | 94 | xcode.syntax.attribute 95 | Menlo-Regular - 12.0 96 | xcode.syntax.character 97 | Menlo-Regular - 12.0 98 | xcode.syntax.comment 99 | Menlo-Italic - 12.0 100 | xcode.syntax.comment.doc 101 | Menlo-Italic - 12.0 102 | xcode.syntax.comment.doc.keyword 103 | Menlo-Italic - 12.0 104 | xcode.syntax.identifier.class 105 | Menlo-Regular - 12.0 106 | xcode.syntax.identifier.class.system 107 | Menlo-Regular - 12.0 108 | xcode.syntax.identifier.constant 109 | Menlo-Regular - 12.0 110 | xcode.syntax.identifier.constant.system 111 | Menlo-Regular - 12.0 112 | xcode.syntax.identifier.function 113 | Menlo-Regular - 12.0 114 | xcode.syntax.identifier.function.system 115 | Menlo-Regular - 12.0 116 | xcode.syntax.identifier.macro 117 | Menlo-Regular - 12.0 118 | xcode.syntax.identifier.macro.system 119 | Menlo-Regular - 12.0 120 | xcode.syntax.identifier.type 121 | Menlo-Regular - 12.0 122 | xcode.syntax.identifier.type.system 123 | Menlo-Regular - 12.0 124 | xcode.syntax.identifier.variable 125 | Menlo-Regular - 12.0 126 | xcode.syntax.identifier.variable.system 127 | Menlo-Regular - 12.0 128 | xcode.syntax.keyword 129 | Menlo-Regular - 12.0 130 | xcode.syntax.number 131 | Menlo-Regular - 12.0 132 | xcode.syntax.plain 133 | Menlo-Regular - 12.0 134 | xcode.syntax.preprocessor 135 | Menlo-Regular - 12.0 136 | xcode.syntax.string 137 | Menlo-Regular - 12.0 138 | xcode.syntax.url 139 | Menlo-Regular - 12.0 140 | 141 | 142 | 143 | --------------------------------------------------------------------------------