projekt0n / github-nvim-theme

Github's Neovim themes
MIT License
2.02k stars 104 forks source link

Bad argument #1 to 'rshift' in color.lua:127 #330

Open thewinger opened 2 weeks ago

thewinger commented 2 weeks ago

Hi, I'm trying to override the color palettes, but as soon as I add pink, blue or cyan i get the following error message:

Failed to run `config` for github-nvim-theme

...im/lazy/github-nvim-theme/lua/github-theme/lib/color.lua:127: bad argument #1 to 'rshift' (number expected, got nil)

# stacktrace:
  - /github-nvim-theme/lua/github-theme/lib/color.lua:127 _in_ **from_hex**
  - /github-nvim-theme/lua/github-theme/group/editor.lua:22 _in_ **get**
  - /github-nvim-theme/lua/github-theme/group.lua:26 _in_ **from**
  - /github-nvim-theme/lua/github-theme/lib/compiler.lua:33 _in_ **compile**
  - /github-nvim-theme/lua/github-theme/init.lua:37 _in_ **compile**
  - /github-nvim-theme/lua/github-theme/init.lua:109 _in_ **setup**
  - ~/.config/nvim/lua/plugins/colorscheme.lua:43 _in_ **config**
  - ~/.config/nvim/lua/core/lazy.lua:21
  - ~/.config/nvim/lua/core/init.lua:4
  - init.lua:1

This is my config for the theme:

{
  {
    "projekt0n/github-nvim-theme",
    priority = 1000,
    lazy = false,
    config = function()
      local palettes = {
        all = {
          white = "#f8fafc",
          black = "#1d283a",
          gray = "#94a3b8",
          green = "#36d399",
          magenta = "#a689fa",
          red = "#fb6f84",
          yellow = "#fddf49",
          -- pink = "#f471b5",
          blue = "#7ed4fc",
          -- cyan = "#67e8f9",
        },
      }
      local specs = {
        github_dark_dimmed = {
          syntax = {
            keyword = "pink",
          },
        },
      }

      require("github-theme").setup({
        palettes = palettes,
        specs = specs,
        options = {
          transparent = true,
        },
      })
      vim.cmd("colorscheme github_dark_dimmed")
    end,
  },