gitextract_yngv_1o9/ ├── .gitmodules ├── CHANGELOG.mkd ├── DEVELOPERS.mkd ├── LICENSE ├── README.md ├── adobe-swatches-solarized/ │ ├── README.md │ ├── solarized.act │ └── solarized.ase ├── apple-colorpalette-solarized/ │ ├── README.md │ ├── alternate palettes/ │ │ ├── README.md │ │ ├── Solarized tagged.clr │ │ └── Solarized untagged.clr │ ├── launch-colorpicker.app/ │ │ └── Contents/ │ │ ├── Info.plist │ │ ├── MacOS/ │ │ │ └── applet │ │ ├── PkgInfo │ │ └── Resources/ │ │ ├── Scripts/ │ │ │ └── main.scpt │ │ ├── applet.icns │ │ ├── applet.rsrc │ │ └── description.rtfd/ │ │ └── TXT.rtf │ └── solarized.clr ├── emacs-colors-solarized/ │ ├── LICENSE │ ├── README.md │ └── color-theme-solarized.el ├── files/ │ └── README.md ├── gedit/ │ ├── README.md │ ├── installer │ ├── solarized-dark.xml │ └── solarized-light.xml ├── gimp-palette-solarized/ │ ├── README.md │ └── solarized.gpl ├── img/ │ ├── andalemono14/ │ │ └── index.html │ ├── dejavusans14/ │ │ └── index.html │ ├── dejavusans18/ │ │ └── index.html │ ├── lettergothic14/ │ │ └── index.html │ ├── lettergothic18/ │ │ └── index.html │ ├── monaco14/ │ │ └── index.html │ ├── skyhookmono14/ │ │ └── index.html │ ├── solarized images build.psd │ ├── terminus12/ │ │ └── index.html │ └── terminus20/ │ └── index.html ├── intellij-colors-solarized/ │ ├── README.md │ ├── Solarized Dark.xml │ ├── Solarized Light.xml │ ├── buildjar.sh │ └── settings.jar ├── iterm2-colors-solarized/ │ ├── README.md │ ├── Solarized Dark.itermcolors │ └── Solarized Light.itermcolors ├── mutt-colors-solarized/ │ ├── README.md │ ├── mutt-colors-solarized-dark-16.muttrc │ ├── mutt-colors-solarized-dark-256.muttrc │ ├── mutt-colors-solarized-light-16.muttrc │ ├── mutt-colors-solarized-light-256.muttrc │ ├── mutt-colors-solarized-template.muttrc │ └── mutt-compile-colors.sh ├── netbeans-colors-solarized/ │ ├── README.md │ └── config/ │ ├── .nbattrs │ └── Editors/ │ ├── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ ├── org-netbeans-modules-editor-settings-CustomFontsColors-highlights.xml │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── application/ │ │ └── xml-dtd/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ └── text/ │ ├── html/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── javascript/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── plain/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-css/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-diff/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-ini/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-javascript-comment/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-javascript-string/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-json/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-php5/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-properties/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-sql/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── x-yaml/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── xhtml/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ ├── xml/ │ │ └── FontsColors/ │ │ └── Netbeans_Solarized_Dark/ │ │ ├── .nbattrs │ │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml │ └── xml-external-parsed-entity/ │ └── FontsColors/ │ └── Netbeans_Solarized_Dark/ │ ├── .nbattrs │ └── org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml ├── osx-terminal.app-colors-solarized/ │ ├── README.md │ ├── Solarized Dark ansi.terminal │ ├── Solarized Light ansi.terminal │ └── xterm-256color/ │ ├── README.md │ ├── Solarized Dark xterm-256color.terminal │ └── Solarized Light xterm-256color.terminal ├── putty-colors-solarized/ │ ├── README.mkd │ ├── solarized_dark.reg │ ├── solarized_dark_puttytray.txt │ ├── solarized_light.reg │ └── solarized_light_puttytray.txt ├── qtcreator/ │ ├── README.md │ ├── generate-styles.pl │ ├── qtcreator-template.xml │ ├── solarized-dark.xml │ └── solarized-light.xml ├── seestyle-colors-solarized/ │ ├── README.md │ └── Solarized.seestyle ├── textmate-colors-solarized/ │ ├── README.mkd │ ├── Solarized (dark).tmTheme │ └── Solarized (light).tmTheme ├── textwrangler-bbedit-colors-solarized/ │ ├── README.mkd │ ├── Solarized Dark.bbcolors │ ├── Solarized Light.bbcolors │ └── bbcolors ├── tmux/ │ ├── README.md │ ├── tmuxcolors-256.conf │ ├── tmuxcolors-dark.conf │ └── tmuxcolors-light.conf ├── utils/ │ ├── README.md │ ├── package.sh │ ├── pandoc2readme │ ├── subtrees.mkd │ ├── tests/ │ │ ├── c.c │ │ ├── haskell.hs │ │ ├── html.html │ │ ├── java.java │ │ ├── javascript.js │ │ ├── pandoc.md │ │ ├── perl.pl │ │ ├── php.php │ │ ├── python.py │ │ ├── ruby.rb │ │ ├── shell.sh │ │ └── tex.tex │ ├── vimorg-text │ └── vimscreenshots.applescript ├── vim-colors-solarized/ │ ├── README.mkd │ ├── autoload/ │ │ └── togglebg.vim │ ├── colors/ │ │ └── solarized.vim │ └── doc/ │ ├── solarized.txt │ └── tags ├── visualstudio-colors-solarized/ │ ├── vs2005/ │ │ ├── solarized-dark.vssettings │ │ └── solarized-light.vssettings │ ├── vs2008/ │ │ ├── solarized-dark.vssettings │ │ └── solarized-light.vssettings │ └── vs2010/ │ ├── solarized-dark.vssettings │ └── solarized-light.vssettings ├── xchat/ │ ├── README.md │ ├── pevents.conf │ ├── solarized-dark-colors.conf │ └── solarized-light-colors.conf ├── xfce4-terminal/ │ ├── LICENSE │ ├── README.md │ ├── dark/ │ │ └── terminalrc │ └── light/ │ └── terminalrc └── xresources/ ├── LICENSE ├── README.md └── solarized