local theme_colors = require('github-theme.colors').setup()

local colors = {
  white = theme_colors.white,
  bg = theme_colors.bg_statusline,
  bg_highlight = theme_colors.fg_statusline,
  normal = theme_colors.blue,
  insert = theme_colors.green,
  command = theme_colors.bright_magenta,
  visual = theme_colors.yellow,
  replace = theme_colors.red,
  diffAdd = theme_colors.git.add,
  diffModified = theme_colors.git.change,
  diffDeleted = theme_colors.git.delete,
  trace = theme_colors.orange,
  hint = theme_colors.hint,
  info = theme_colors.info,
  error = theme_colors.error,
  warn = theme_colors.warn,
  floatBorder = theme_colors.border,
  selection_caret = theme_colors.magenta,
}

return colors