{"id":18626071,"url":"https://github.com/ericbn/vim-solarized","last_synced_at":"2026-03-15T08:22:04.346Z","repository":{"id":96153551,"uuid":"73005828","full_name":"ericbn/vim-solarized","owner":"ericbn","description":"A simpler fork of the awesome Solarized colorscheme for Vim by Ethan Schoonover","archived":false,"fork":false,"pushed_at":"2024-01-18T21:24:21.000Z","size":25,"stargazers_count":61,"open_issues_count":0,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-07-02T07:04:11.355Z","etag":null,"topics":["color-scheme","solarized","true-color","vim","vim-colors","vim-colorscheme"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericbn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-11-06T17:06:46.000Z","updated_at":"2025-05-20T12:09:56.000Z","dependencies_parsed_at":"2024-01-18T22:31:31.153Z","dependency_job_id":"ddbcd181-1a3b-4806-836c-62d3a08d8a01","html_url":"https://github.com/ericbn/vim-solarized","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ericbn/vim-solarized","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericbn%2Fvim-solarized","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericbn%2Fvim-solarized/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericbn%2Fvim-solarized/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericbn%2Fvim-solarized/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericbn","download_url":"https://codeload.github.com/ericbn/vim-solarized/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericbn%2Fvim-solarized/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271984766,"owners_count":24853906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-24T02:00:11.135Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["color-scheme","solarized","true-color","vim","vim-colors","vim-colorscheme"],"created_at":"2024-11-07T04:36:50.951Z","updated_at":"2026-03-15T08:22:04.284Z","avatar_url":"https://github.com/ericbn.png","language":"Vim Script","readme":"# solarized.vim\n\nA simpler fork of the awesome [Solarized colorscheme for\nVim](https://github.com/altercation/vim-colors-solarized) by Ethan Schoonover,\ncompletely written from scratch.\n\nWhat was removed? The degraded 256 color scheme, all functions, mappings and\nmenus, and the configuration options. Bold and underline attributes are enabled\nfor both terminal and GUI modes. Italic is only enabled for GUI.\n\nERB templates are used to generate the colorscheme, so the code is easy to\nmaintain and it runs fast in Vim.\n\n## Requirements\n\nFor users of Vim in terminal mode, the terminal emulator must either support\n[true-color](#true-color-support), or be configured with the Solarized color\npalette:\n```\nTerm Color | Hex     | RGB\n-----------|---------|------------\nblack      | #073642 |   7  54  66\nred        | #dc322f | 220  50  47\ngreen      | #719e07 | 113 158   7\nyellow     | #b58900 | 181 137   0\nblue       | #268bd2 |  38 139 210\nmagenta    | #d33682 | 211  54 130\ncyan       | #2aa198 |  42 161 152\nwhite      | #eee8d5 | 238 232 213\nbrblack    | #002732 |   0  39  50\nbrred      | #cb4b16 | 203  75  22\nbrgreen    | #586e75 |  88 110 117\nbryellow   | #657b83 | 101 123 131\nbrblue     | #839496 | 131 148 150\nbrmagenta  | #6c71c4 | 108 113 196\nbrcyan     | #93a1a1 | 147 161 161\nbrwhite    | #fdf6e3 | 253 246 227\n```\n\nColor palette files for the main terminal emulators can be found in the\n[Solarized](https://github.com/altercation/solarized) repository.\n\n## Installation\n\n- Manual:\n\n      curl -fLo ~/.vim/colors/solarized.vim --create-dirs https://raw.githubusercontent.com/ericbn/vim-solarized/master/colors/solarized.vim\n\n- Using [pathogen.vim](https://github.com/tpope/vim-pathogen):\n\n      cd ~/.vim/bundle\n      git clone git://github.com/ericbn/vim-solarized.git\n\n- Using [vim-plug](https://github.com/junegunn/vim-plug):\n\n      Plug 'ericbn/vim-solarized'\n\n## Configuration\n\nAdd one of the following to your `.vimrc`:\n\n- For dark background:\n\n      syntax enable\n      set background=dark\n      colorscheme solarized\n\n- For light background:\n\n      syntax enable\n      set background=light\n      colorscheme solarized\n\n## True-color support\n\nThe colorscheme is ready for true-color support (requires at least Vim\n7.4.1799). Enable it in your `.vimrc` with:\n\n    set termguicolors\n\n## Contributing\n\n- Edit the ERB files and run `erb solarized.vim.erb \u003e colors/solarized.vim` to\n  generate the colorscheme file. Ruby 2 required.\n- Submit the changes in both the colorscheme and the ERB files.\n\n## License\n\nCopyright (c) 2011 Ethan Schoonover\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericbn%2Fvim-solarized","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericbn%2Fvim-solarized","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericbn%2Fvim-solarized/lists"}