5

I am using sublime text editor, and my favorite theme is Mac Classic Theme . But When I updated the editor , con't found the theme. How Can I install Mac Classic Theme In sublime editor ?

Rubel Hossain
  • 2,503
  • 2
  • 22
  • 23

4 Answers4

11

Try this:

Download the package of "Color Scheme - Legacy" here -> From the menu: Preferences -> Browse Packages -> Inside the folder that pops up, create a subfolder: Mac Classic.tmTheme -> Drop the file Mac Classic.tmTheme in there.

Restart the Sublime and apply the mac classic theme.

Isa Souza
  • 1,621
  • 1
  • 12
  • 12
5

You can install the "Color Scheme - Legacy" package via the "Package Control: Install Package". This should bring the "Color Scheme - Legacy.sublime-package" file into your "Installed Packages" Sublime Text folder. After this you should be able to find the "Mac Classic" scheme in the "Preferences / Color Scheme..." menu.

That being said, due to some unknown error perhaps, but I don't see the "Mac Classic" and other legacy themes after installing the "Color Scheme - Legacy". BUT, if I copy "Mac Classic.tmTheme" from "Color Scheme - Legacy.sublime-package" to any other ".sublime-package" file, they appear!

Here's one way to do this with:

cd 'Installed Packages/'
mkdir -p custom-themes
cd custom-themes/
unzip '../Color Scheme - Legacy.sublime-package'
zip ../custom-themes.sublime-package *.tmTheme
cd ..
rm -rf custom-themes/

(P.S. The problem of getting Mac Classic to work was also discussed here, on reddit).

ArtemGr
  • 11,684
  • 3
  • 52
  • 85
2

Install the "Color Scheme - Legacy" package as described above. In Windows then go to C:\Program Files\Sublime Text 3\Packages You will find Default color scheme package (43Kb) and Legacy package (260Kb). Rename packages so the Legacy package is now named Default. All the previous options inc Mac Classic will now be available.

screenshot of package names

TonyR
  • 21
  • 1
0

I found Isa Souza's directions a little hard to follow, so here's exactly what to do:

Noumenon
  • 5,099
  • 4
  • 53
  • 73