Skip to content

Instantly share code, notes, and snippets.

@parkr
Created April 16, 2011 04:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parkr/922872 to your computer and use it in GitHub Desktop.
Save parkr/922872 to your computer and use it in GitHub Desktop.
An Xcode theme based on fapfap's TextMate theme. http://fapfap.se/2011/03/01/my-textmate-setup/ for the theme.

An Xcode theme based on fapfap's TextMate theme.

When learning C, I downloaded Xcode to gain access to command-line compiling (gcc doesn't come with Mac OS X?) and a nice interface in which to write my code. I stumbled upon fapfap's TextMate theme the other day and just loved it. Beautiful. So I went ahead and made an Xcode theme based on it so I could code in C (and its derivatives) with elegance.

To install:

  1. Download the file.
  2. Move to ~/Library/Application Support/Xcode/Color Themes/
  3. Fire up Xcode, open up preferences
  4. Select "fapfap" from the drop-down menu on the Colors & Themes section and you're good to go!
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Colors</key>
<dict>
<key>Background</key>
<string>0.213 0.245 0.274</string>
<key>InsertionPoint</key>
<string>1.000 1.000 1.000</string>
<key>Selection</key>
<string>0.391 0.402 0.407</string>
<key>xcode.syntax.attribute</key>
<string>0.883 0.961 0.693</string>
<key>xcode.syntax.character</key>
<string>0.469 0.426 0.770</string>
<key>xcode.syntax.comment</key>
<string>0.683 0.683 0.682</string>
<key>xcode.syntax.comment.doc</key>
<string>0.683 0.683 0.682</string>
<key>xcode.syntax.comment.doc.keyword</key>
<string>0.970 0.970 0.970</string>
<key>xcode.syntax.entity</key>
<string>0.665 0.052 0.569</string>
<key>xcode.syntax.entity.start</key>
<string>0.665 0.052 0.569</string>
<key>xcode.syntax.identifier</key>
<string>0.000 0.000 0.000</string>
<key>xcode.syntax.identifier.class</key>
<string>1.000 1.000 1.000</string>
<key>xcode.syntax.identifier.class.system</key>
<string>0.885 0.965 0.999</string>
<key>xcode.syntax.identifier.constant</key>
<string>0.988 0.424 0.377</string>
<key>xcode.syntax.identifier.constant.system</key>
<string>0.696 0.845 0.175</string>
<key>xcode.syntax.identifier.function</key>
<string>0.744 0.719 0.907</string>
<key>xcode.syntax.identifier.function.system</key>
<string>0.883 0.961 0.693</string>
<key>xcode.syntax.identifier.macro</key>
<string>0.778 0.548 0.357</string>
<key>xcode.syntax.identifier.macro.system</key>
<string>0.778 0.488 0.284</string>
<key>xcode.syntax.identifier.plain</key>
<string>0.000 0.000 0.000</string>
<key>xcode.syntax.identifier.type</key>
<string>0.985 0.871 0.179</string>
<key>xcode.syntax.identifier.type.system</key>
<string>0.666 0.752 0.864</string>
<key>xcode.syntax.identifier.variable</key>
<string>0.329 0.647 0.999</string>
<key>xcode.syntax.identifier.variable.system</key>
<string>0.613 1.000 0.998</string>
<key>xcode.syntax.keyword</key>
<string>0.988 0.424 0.377</string>
<key>xcode.syntax.number</key>
<string>0.984 0.451 0.993</string>
<key>xcode.syntax.plain</key>
<string>1.000 1.000 1.000</string>
<key>xcode.syntax.preprocessor</key>
<string>0.696 0.845 0.175</string>
<key>xcode.syntax.string</key>
<string>0.858 0.999 0.453</string>
<key>xcode.syntax.url</key>
<string>0.819 0.560 0.222</string>
<key>xcode.syntax.url.mail</key>
<string>0.100 0.100 1.000</string>
</dict>
<key>Fonts</key>
<dict>
<key>xcode.syntax.attribute</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.character</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.comment</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.comment.doc</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.comment.doc.keyword</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.keyword</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.number</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.plain</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.preprocessor</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.string</key>
<string>Monaco - 12.0</string>
<key>xcode.syntax.url</key>
<string>Monaco - 12.0</string>
</dict>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment