Created
December 26, 2014 12:50
-
-
Save lpm11/99eed1b5c265bd2c4562 to your computer and use it in GitHub Desktop.
Obsidian dark color scheme for TeXShop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Obsidian color scheme for TeXShop | |
| # ref: http://eclipsecolorthemes.org/?view=theme&id=21 | |
| # background = #293134 | |
| defaults write TeXShop background_R 0.161 | |
| defaults write TeXShop background_G 0.192 | |
| defaults write TeXShop background_B 0.204 | |
| # commands = #93C763 | |
| defaults write TeXShop commandred 0.576 | |
| defaults write TeXShop commandgreen 0.780 | |
| defaults write TeXShop commandblue 0.388 | |
| # comments = #7D8C93 | |
| defaults write TeXShop commentred 0.490 | |
| defaults write TeXShop commentgreen 0.549 | |
| defaults write TeXShop commentblue 0.576 | |
| # foreground = #E0E2E4 | |
| defaults write TeXShop foreground_R 0.878 | |
| defaults write TeXShop foreground_G 0.886 | |
| defaults write TeXShop foreground_B 0.894 | |
| # index = #FF8BFF | |
| defaults write TeXShop indexred 1.000 | |
| defaults write TeXShop indexgreen 0.545 | |
| defaults write TeXShop indexblue 1.000 | |
| # marker = #E8E2B7 | |
| defaults write TeXShop markerred 0.910 | |
| defaults write TeXShop markergreen 0.886 | |
| defaults write TeXShop markerblue 0.718 | |
| # insertionpoint = #E0E2E4 | |
| defaults write TeXShop insertionpoint_R 0.878 | |
| defaults write TeXShop insertionpoint_G 0.886 | |
| defaults write TeXShop insertionpoint_B 0.894 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment