{"id":20730619,"url":"https://github.com/ccxnu/rosebones","last_synced_at":"2025-07-19T19:39:19.251Z","repository":{"id":225280817,"uuid":"765548149","full_name":"ccxnu/rosebones","owner":"ccxnu","description":"A minimal, contrast-based, dark \u0026 light Neovim theme written in Lua, with support for lsp, treesitter and lots of plugins.","archived":false,"fork":false,"pushed_at":"2025-02-21T09:11:54.000Z","size":126,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T22:02:07.986Z","etag":null,"topics":["lua","minimal","neovim-plugin","nvim","nvim-colorscheme","rosebones","theme","vim","vim-colorscheme"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ccxnu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-03-01T06:15:30.000Z","updated_at":"2025-03-21T00:33:35.000Z","dependencies_parsed_at":"2024-10-18T11:52:06.786Z","dependency_job_id":"e2e7ca2c-414a-4996-8426-9a5bfcc9fc7b","html_url":"https://github.com/ccxnu/rosebones","commit_stats":null,"previous_names":["cuencapablo/rosebones","ccxnu/rosebones"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ccxnu/rosebones","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxnu%2Frosebones","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxnu%2Frosebones/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxnu%2Frosebones/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxnu%2Frosebones/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ccxnu","download_url":"https://codeload.github.com/ccxnu/rosebones/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxnu%2Frosebones/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265999158,"owners_count":23862219,"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","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":["lua","minimal","neovim-plugin","nvim","nvim-colorscheme","rosebones","theme","vim","vim-colorscheme"],"created_at":"2024-11-17T05:12:09.459Z","updated_at":"2025-07-19T19:39:19.212Z","avatar_url":"https://github.com/ccxnu.png","language":"Lua","readme":"# 🌹 Rosebones 🦴\n\nA dark and light [Neovim](https://github.com/neovim/neovim) theme written in\n[Lua](https://www.lua.org) inspired on from the [Rose Pine](https://github.com/rose-pine/neovim)\nand [Zenbones](https://github.com/mcchrish/zenbones.nvim) themes.\n\n## Default\n\n\u003c!--- ![image](https://user-images.githubusercontent.com/292349/115295095-3a9e5080-a10e-11eb-9aed-6054488c46ce.png) ---\u003e\n\n## ✨ Features\n\n- Supports the latest [Neovim](https://github.com/neovim/neovim)\n  [0.9.0](https://github.com/neovim/neovim/releases/tag/v0.9.0) features.\n- Enhances terminal colors.\n- Dark and light themes.\n- Supports all major plugins.\n\n## ⚡️ Requirements\n\n- [Neovim](https://github.com/neovim/neovim) \u003e=\n  [0.7.2](https://github.com/neovim/neovim/releases/tag/v0.7.2)\n\n## 📦 Installation\n\nInstall the theme with your preferred package manager, such as\n[folke/lazy.nvim](https://github.com/folke/lazy.nvim):\n\n```lua\n{\n  'ccxnu/rosebones',\n  lazy = false,\n  priority = 1000,\n  opts = {},\n}\n```\n\n## 🚀 Usage\n\n### Lua\n\n```lua\nvim.cmd.colorscheme('rosebones') -- or\n```\n\n### Vim Script\n\n```vim\ncolorscheme rosebones\n```\n\n### Default options\n\n```lua\nrequire(\"rosebones\").setup({\n  style = \"default\",\n  transparent = true, -- Enable this to disable setting the background color (Recommended)\n  terminal_colors = false, -- Configure the colors used when opening a `:terminal` in Neovim\n  styles = {\n    -- Style to be applied to different syntax groups\n    -- Value is any valid attr-list value for `:help nvim_set_hl`\n    comments = { italic = true },\n    keywords = { italic = true },\n    functions = {},\n    variables = {},\n  },\n\n  hide_inactive_statusline = false, -- Enabling this option, will hide inactive statuslines and replace them with a thin border instead. Should work with the standard **StatusLine** and **LuaLine**.\n  dim_inactive = false, -- dims inactive windows\n  lualine_bold = false, -- When `true`, section headers in the lualine theme will be bold\n\n  --- You can override specific color groups to use other groups or a hex color\n  --- function will be called with a ColorScheme table\n  ---@param colors ColorScheme\n  on_colors = function(colors) end,\n\n  --- You can override specific highlights to use other groups or a hex color\n  --- function will be called with a Highlights and ColorScheme table\n  ---@param highlights Highlights\n  ---@param colors ColorScheme\n  on_highlights = function(highlights, colors) end,\n  use_background = true, -- can be light/dark/auto. When auto, background will be set to vim.o.background\n})\n```\n\n## 🔥 Contributing\n\nPull requests are welcome.\nThis theme is still in progress.\n\nSupport for all major plugins will come by request because\nI don't use all of them just few.\n\n##### I hope you enjoy it!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccxnu%2Frosebones","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fccxnu%2Frosebones","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccxnu%2Frosebones/lists"}