Lisa
Lisa

Reputation: 33

How to change the Xcode theme to your liking?

How to change Xcode Theme? I don't want to use the basic theme anymore. I'm using imac, and I want the exact way.

Upvotes: 3

Views: 3311

Answers (2)

Mojtaba Hosseini
Mojtaba Hosseini

Reputation: 119706

Just go to the preferences from the the Xcode menu (command+,) and use the Themes tab. So you can set any kind of style you like (predefined, downloaded or completly custom)

Demo

Upvotes: 1

Hailey
Hailey

Reputation: 362

  1. First, you have to download the theme. Only '.xccolortheme' format files are possible. If you search "xcode them download" on Google, you'll find a lot.

  2. You must enter the terminal and enter the command.

cd ~/Library/Developer/Xcode/UserData/FontAndColorThemes/
mkdir FontAndColorThemes
open .
  1. Put the downloaded file in this folder.

  2. Open Xcode and enter Editor -> Theme to see your downloaded theme. enter image description here

Upvotes: 5

Related Questions