{"id":29139603,"url":"https://github.com/gabrielfrimodig/seashell.nvim","last_synced_at":"2025-10-13T15:36:22.214Z","repository":{"id":300748862,"uuid":"1002910576","full_name":"gabrielfrimodig/seashell.nvim","owner":"gabrielfrimodig","description":"A dark-themed Neovim colorscheme inspired by the muted, ocean-shell hues of your terminal.","archived":false,"fork":false,"pushed_at":"2025-06-16T16:36:04.000Z","size":297,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-06T22:03:30.313Z","etag":null,"topics":["neovim","vim"],"latest_commit_sha":null,"homepage":"","language":"Lua","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/gabrielfrimodig.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,"zenodo":null}},"created_at":"2025-06-16T10:32:21.000Z","updated_at":"2025-09-17T06:45:43.000Z","dependencies_parsed_at":"2025-06-23T12:12:27.275Z","dependency_job_id":"18faef3d-c38c-4dd4-98c3-bf35a6d9f674","html_url":"https://github.com/gabrielfrimodig/seashell.nvim","commit_stats":null,"previous_names":["gabrielfrimodig/seashell.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gabrielfrimodig/seashell.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfrimodig%2Fseashell.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfrimodig%2Fseashell.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfrimodig%2Fseashell.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfrimodig%2Fseashell.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabrielfrimodig","download_url":"https://codeload.github.com/gabrielfrimodig/seashell.nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfrimodig%2Fseashell.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015934,"owners_count":26085777,"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-10-13T02:00:06.723Z","response_time":61,"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":["neovim","vim"],"created_at":"2025-06-30T15:37:30.286Z","updated_at":"2025-10-13T15:36:22.198Z","avatar_url":"https://github.com/gabrielfrimodig.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SeaShell.nvim\n\nA dark-themed Neovim colorscheme inspired by the muted, ocean-shell hues of your terminal. SeaShell blends deep blues and teals with warm sandy accents to create a calm yet contrast-rich editing experience.\n\n\n## Table of Contents\n\n- [SeaShell.nvim](#seashellnvim)\n  - [Table of Contents](#table-of-contents)\n  - [Features](#features)\n  - [Screenshot](#screenshot)\n  - [Installation](#installation)\n    - [Packer.nvim](#packernvim)\n    - [vim-plug](#vim-plug)\n    - [Lazy.nvim](#lazynvim)\n  - [Usage](#usage)\n  - [Custom   Customization](#custom---customization)\n  - [Contributing](#contributing)\n  - [License](#license)\n\n## Features\n\n- **Balanced Contrast**  \n  Carefully chosen foreground and background pairings for long coding sessions without eye strain.\n\n- **Full 16-Color Terminal Support**  \n  Terminal highlight groups automatically inherit SeaShell’s palette.\n\n- **Syntax Harmony**  \n  Dedicated colors for comments, strings, keywords, functions, types, and more.\n\n- **Easy to Extend**  \n  Written in Lua for simple tweaks and overrides.  \n\n- **Vim Compatibility**  \n  Includes a fallback `seashell.vim` for legacy Vim users.\n\n## Screenshot\n\n![Python example](docs/assets/python-example.png)\n\n\n## Installation\n\n### Packer.nvim\n\nAdd the following to your `plugins.lua` or packer configuration:\n\n```lua\nuse {\n  \"gabrielfrimodig/seashell.nvim\",\n  config = function()\n    -- Theme loads automatically on startup\n    vim.cmd(\"colorscheme seashell\")\n  end\n}\n```\n\n### vim-plug\n\nInclude in your `init.vim`:\n\n```vim\nPlug 'gabrielfrimodig/seashell.nvim'\nautocmd VimEnter * colorscheme seashell\n```\n\nThen:\n```vim\n:PlugInstall\n```\n\n### Lazy.nvim\n\nAdd to your `lazy.lua` configuration:\n\n```lua\n{\n  \"gabrielfrimodig/seashell.nvim\",\n  lazy = false,\n  priority = 1000,\n  config = function()\n    vim.cmd(\"colorscheme seashell\")\n  end,\n}\n```\n\n## Usage\n\nOnce installed, simply set:\n\n```vim\ncolorscheme seashell\n```\n\nOr, in Lua:\n\n```lua\nvim.cmd(\"colorscheme seashell\")\n```\n\nNewvim will automatically load the SeaShell palette and apply it to all built-in highlight groups.\n\n## Custom   Customization\n\nIf you'd like to override or tweak specific highlight groups, you can call the setup function before loading:\n\n```lua\nrequire(\"seashell\").palette.comment = \"#a0b0c0\"  -- Change comment color\nrequire(\"seashell\").load()\n```\n\nTo override any group:\n```lua\nvim.api.nvim_set_hl(0, \"Function\", { fg = \"#80d0e0\", bold = true })\n```\n\n## Contributing\n\nContribution, issues, and feature requests are welcome!\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/your-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin feature/your-feature`)\n5. Open a pull request\n\n## License\n\nTodo","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrielfrimodig%2Fseashell.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabrielfrimodig%2Fseashell.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrielfrimodig%2Fseashell.nvim/lists"}