Skip to content

Instantly share code, notes, and snippets.

@wezm
Created February 19, 2011 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wezm/835231 to your computer and use it in GitHub Desktop.
Save wezm/835231 to your computer and use it in GitHub Desktop.
My attempt at a Railscasts inspired theme for Xcode
#!/bin/sh
# Wesley Moore
# http://www.wezm.net/technical/2011/02/railscasts-xcode-theme/
THEME_DIR="$HOME/Library/Application Support/Xcode/Color Themes"
if [ ! -d "$THEME_DIR" ]; then
mkdir -p "$THEME_DIR"
fi
cd "$THEME_DIR"
curl -sSO https://gist.github.com/raw/835231/Railscasts-wezm.xccolortheme
echo "Theme installed. Restart Xcode if it is running."
<?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.169 0.169 0.169</string>
<key>InsertionPoint</key>
<string>1.000 1.000 1.000</string>
<key>Selection</key>
<string>0.353 0.392 0.494</string>
<key>xcode.syntax.attribute</key>
<string>0.816 0.816 1.000</string>
<key>xcode.syntax.character</key>
<string>0.318 0.624 0.314</string>
<key>xcode.syntax.comment</key>
<string>0.737 0.580 0.345</string>
<key>xcode.syntax.comment.doc</key>
<string>0.737 0.580 0.345</string>
<key>xcode.syntax.comment.doc.keyword</key>
<string>0.737 0.580 0.345</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>0.855 0.282 0.224</string>
<key>xcode.syntax.identifier.class.system</key>
<string>0.855 0.282 0.224</string>
<key>xcode.syntax.identifier.constant</key>
<string>0.424 0.612 0.741</string>
<key>xcode.syntax.identifier.constant.system</key>
<string>0.647 0.761 0.380</string>
<key>xcode.syntax.identifier.function</key>
<string>1.000 0.776 0.427</string>
<key>xcode.syntax.identifier.function.system</key>
<string>0.816 0.314 0.286</string>
<key>xcode.syntax.identifier.macro</key>
<string>0.800 0.471 0.200</string>
<key>xcode.syntax.identifier.macro.system</key>
<string>0.800 0.471 0.200</string>
<key>xcode.syntax.identifier.plain</key>
<string>0.000 0.000 0.000</string>
<key>xcode.syntax.identifier.type</key>
<string>0.427 0.612 0.741</string>
<key>xcode.syntax.identifier.type.system</key>
<string>0.431 0.612 0.745</string>
<key>xcode.syntax.identifier.variable</key>
<string>1.000 1.000 1.000</string>
<key>xcode.syntax.identifier.variable.system</key>
<string>0.816 0.816 1.000</string>
<key>xcode.syntax.keyword</key>
<string>0.800 0.471 0.200</string>
<key>xcode.syntax.number</key>
<string>0.647 0.761 0.380</string>
<key>xcode.syntax.plain</key>
<string>0.902 0.882 0.863</string>
<key>xcode.syntax.preprocessor</key>
<string>0.800 0.471 0.200</string>
<key>xcode.syntax.string</key>
<string>0.647 0.761 0.380</string>
<key>xcode.syntax.url</key>
<string>0.753 0.728 0.705</string>
<key>xcode.syntax.url.mail</key>
<string>0.055 0.055 1.000</string>
</dict>
<key>Fonts</key>
<dict>
<key>xcode.syntax.attribute</key>
<string>Consolas - 11.0</string>
<key>xcode.syntax.character</key>
<string>Consolas - 11.0</string>
<key>xcode.syntax.comment</key>
<string>Consolas-Italic - 11.0</string>
<key>xcode.syntax.comment.doc</key>
<string>Consolas-Italic - 11.0</string>
<key>xcode.syntax.comment.doc.keyword</key>
<string>Consolas-Italic - 11.0</string>
<key>xcode.syntax.keyword</key>
<string>Consolas - 11.0</string>
<key>xcode.syntax.number</key>
<string>Consolas - 11.0</string>
<key>xcode.syntax.plain</key>
<string>Consolas - 11.0</string>
<key>xcode.syntax.preprocessor</key>
<string>Consolas - 11.0</string>
<key>xcode.syntax.string</key>
<string>Consolas - 11.0</string>
<key>xcode.syntax.url</key>
<string>Consolas - 11.0</string>
</dict>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment