TextWrangler is a good alternative. – theblang May 19 '15 at 15:34 1 FYI the current beta version (3.13.91) runs fine on Yosemite, did not need additional packages. – austinmarton Jun 4 '15 at 1:38. Download ezTalks for Mac Free (Latest Version). Download and Install the complete installation file of ezTalks for Mac for Mac OS X 10.10 or a later Windows PC. It's safe, secure and free to download from appformacdownload.com. The newest Messaging and Chat category with new features in (78.1 MB) Safe & Secure to download for you.
I have been using Textwrangler for years as my go-to text editor. There are many features of Textwrangler that I like, so I decided to stick with it as my primary text editor, but customize it a bit by installing one of the low contrast themes.
Solarized is a carefully chosen color scheme designed to reduce eyestrain when editing text. It has been ported to most of the text editors that are popular among coders, including Textwrangler. I recently updated to Textwrangler 5.0, and the Solarized files I downloaded from GitHub would not work. However, other theme files worked fine. I compared the files that worked with the ones that did not, and eventually got the Solarized themes to work. I thought I would post my solution here in case anybody else had this problem. Disclaimer: I am not a coder, just a dabbler. I’m sure anyone with a little experience would have identified the problem and fixed it much faster and easier than I did.
Here is how I got the Solarized themes working in Textwrangler 5.0:
Open Terminal (MacOSX)Download the BBEdit Color Schemes Pack from GitHub, and copy the .bbcolors
files to the directory:
Open Solarized Dark.bbcolors
, and Tomorrow.bbcolors
in Textwrangler.
Make a copy of the Tomorrow.bbcolors
file and name it Tomorrow-copy.bbcolors
In Textwrangler, select (cmd-click) both the Solarized Dark.bbcolors
and the Tomorrow-copy.bbcolors files
.
Right-click (ctl-click) one of the selected files and select Compare
from the menu.
For each of <key>
values in the Tomorrow-copy.bbcolors
file, replace the <string>
values with the corresponding <string>
values from the Solarized Dark.bbcolors
file.
Some of the <key>
values in the Solarized Dark.bbcolors
file are different than the values in the Tomorrow-copy.bbcolors
file, and may be the source of the problem. Do not copy those <key>
values to the Tomorrow-copy.bbcolors
file. For example, in the Solarized Dark.bbcolors
file we find:
But in the Tomorrow-copy.bbcolors
file we find:
Instead, use <key>UseCustomHighlightColor</key>
but change <false/>
to <true/>
.
Delete the Solarized Dark.bbcolors
and the Solarized Dark.bbColorScheme
files from the Color Schemes
directory.
Rename the Tomorrow-copy.bbcolors
file to Solarized Dark.bbcolors
.
Restart Textwrangler.
Choose the new Solarized Dark theme from the Text Color preferences.
Repeat the above steps for the Solarized Light theme.
Here are Gists of the Solarized Light and Solarized Dark themes for Textwrangler 5. For Mac OSX 10.10 put these files in
Text Wrangler For Mac Osx 10.10 10.13
and restart Textwrangler.
Solarized Light.bbcolors
Text Wrangler For Mac Osx 10.10 High Sierra
Solarized Dark.bbcolors
Happy coding!
Update December 4, 2015
I noticed that the text color in the Solarized Light theme was a bit darker that that suggested on the Solarized web site. I changed the text color for the Textwrangler Solarized Light theme by replacing these lines in the Solarized Light.bbcolors
file:
with these lines:
Save the file, then remove the Solarized Light.bbColorScheme
file from the directory,
and restart Textwrangler.
Text Wrangler For Mac Osx 10.10 Catalina
To determine the rgba
values, first find the RGB
values for the Solarized color you want from the Values section on the Solarized web site. I wanted the base00
color for the body text (see the Usage & Development section):
Next, divide each of the RGB
values by 255 to determine the number to use as the rgba
value. Hence, 101/255 = 0.396078, 123/255 = 0.482353, and 131/255 = 0.513725. Using this method, you can convert the text color to anything you want.
I have updated the Solarized Light.bbcolors
Gist to reflect the new text color.