{"id":17320171,"url":"https://github.com/bryant-the-coder/base16","last_synced_at":"2026-07-17T04:34:14.542Z","repository":{"id":39881805,"uuid":"494645966","full_name":"bryant-the-coder/base16","owner":"bryant-the-coder","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-28T08:58:59.000Z","size":201,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-17T17:54:05.352Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bryant-the-coder.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}},"created_at":"2022-05-21T01:02:40.000Z","updated_at":"2025-02-19T19:38:14.000Z","dependencies_parsed_at":"2025-02-01T08:36:52.829Z","dependency_job_id":null,"html_url":"https://github.com/bryant-the-coder/base16","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bryant-the-coder/base16","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryant-the-coder%2Fbase16","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryant-the-coder%2Fbase16/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryant-the-coder%2Fbase16/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryant-the-coder%2Fbase16/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bryant-the-coder","download_url":"https://codeload.github.com/bryant-the-coder/base16/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryant-the-coder%2Fbase16/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35568015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-17T02:00:06.162Z","response_time":116,"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":[],"created_at":"2024-10-15T13:29:17.911Z","updated_at":"2026-07-17T04:34:14.510Z","avatar_url":"https://github.com/bryant-the-coder.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"## base16.lua\n\nProgrammatic lua library for setting\n[base16](https://github.com/chriskempson/base16) themes in\n[Neovim](https://github.com/neovim/neovim).\n\n## Installation\n\nInstall the theme with your preferred package manager:\n\n[vim-plug](https://github.com/junegunn/vim-plug)\n```vim\nPlug 'bryant-the-coder/base16'\n```\n\n[packer](https://github.com/wbthomason/packer.nvim)\n\n```lua\nuse 'bryant-the-coder/base16'\n```\n\n\n## Usage\n\n```lua\nlocal base16 = require (\"base16\")\nbase16(base16.themes(\"\u003ctheme\u003e\"), true)\n```\n\u003e Change `\u003ctheme\u003e` to your preferrable theme\n\n## Advanced Usage\n1. Formats an array of 16 hex color strings into a dictionary suitable for use with `base16.apply_theme`.\n\nExample:\n```lua\nlocal \u003ctheme\u003e = base16.theme_from_array {\n--  base00    base01    base02    base03\n \"383838\"; \"404040\"; \"606060\"; \"6f6f6f\";\n--  base04    base05    base06    base07\n \"808080\"; \"dcdccc\"; \"c0c0c0\"; \"ffffff\";\n--  base08    base09    base0A    base0B\n \"dca3a3\"; \"dfaf8f\"; \"e0cf9f\"; \"5f7f5f\";\n--  base0C    base0D    base0E    base0F\n \"93e0e3\"; \"7cb8bb\"; \"dc8cc3\"; \"000000\";\n}\nbase16(\u003ctheme\u003e, true)\n```\n\u003e Change `\u003ctheme\u003e` to your preferrable theme\n\n2. Formats an array of 16 hex color strings into a dictionary suitable for use with base16.apply_theme.\nDictionary of definitions to be used by `base16` or `base16.apply_theme`.\n\nExample:\n\n```lua\nbase16.themes[\"zenburn\"] == {\n base00 = \"383838\"; base01 = \"404040\"; base02 = \"606060\"; base03 = \"6f6f6f\";\n base04 = \"808080\"; base05 = \"dcdccc\"; base06 = \"c0c0c0\"; base07 = \"ffffff\";\n base08 = \"dca3a3\"; base09 = \"dfaf8f\"; base0A = \"e0cf9f\"; base0B = \"5f7f5f\";\n base0C = \"93e0e3\"; base0D = \"7cb8bb\"; base0E = \"dc8cc3\"; base0F = \"000000\";\n}\n```\n\u003e Replace `zenburn` with the theme you want to override\n\n## Credits\n- [max397574](https://github.com/max397574/omega-nvim)\n- [NvChad](https://github.com/NvChad/base46)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryant-the-coder%2Fbase16","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbryant-the-coder%2Fbase16","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryant-the-coder%2Fbase16/lists"}