mirror of https://github.com/gabehf/base46.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
1.4 KiB
100 lines
1.4 KiB
local theme = require("base46").get_theme_tb "base_16"
|
|
local colors = require("base46").get_theme_tb "base_30"
|
|
|
|
return {
|
|
|
|
-- git commits
|
|
gitcommitOverflow = {
|
|
fg = theme.base08,
|
|
},
|
|
|
|
gitcommitSummary = {
|
|
fg = theme.base08,
|
|
},
|
|
|
|
gitcommitComment = {
|
|
fg = theme.base03,
|
|
},
|
|
|
|
gitcommitUntracked = {
|
|
fg = theme.base03,
|
|
},
|
|
|
|
gitcommitDiscarded = {
|
|
fg = theme.base03,
|
|
},
|
|
|
|
gitcommitSelected = {
|
|
fg = theme.base03,
|
|
},
|
|
|
|
gitcommitHeader = {
|
|
fg = theme.base0E,
|
|
},
|
|
|
|
gitcommitSelectedType = {
|
|
fg = theme.base0D,
|
|
},
|
|
|
|
gitcommitUnmergedType = {
|
|
fg = theme.base0D,
|
|
},
|
|
|
|
gitcommitDiscardedType = {
|
|
fg = theme.base0D,
|
|
},
|
|
|
|
gitcommitBranch = {
|
|
fg = theme.base09,
|
|
bold = true,
|
|
},
|
|
|
|
gitcommitUntrackedFile = {
|
|
fg = theme.base0A,
|
|
},
|
|
|
|
gitcommitUnmergedFile = {
|
|
fg = theme.base08,
|
|
bold = true,
|
|
},
|
|
|
|
gitcommitDiscardedFile = {
|
|
fg = theme.base08,
|
|
bold = true,
|
|
},
|
|
|
|
gitcommitSelectedFile = {
|
|
fg = theme.base0B,
|
|
bold = true,
|
|
},
|
|
|
|
-- Gitsigns.nvim
|
|
DiffAdd = {
|
|
fg = colors.blue,
|
|
},
|
|
|
|
DiffAdded = {
|
|
fg = colors.green,
|
|
},
|
|
|
|
DiffChange = {
|
|
fg = colors.light_grey,
|
|
},
|
|
|
|
DiffChangeDelete = {
|
|
fg = colors.red,
|
|
},
|
|
|
|
DiffModified = {
|
|
fg = colors.orange,
|
|
},
|
|
|
|
DiffDelete = {
|
|
fg = colors.red,
|
|
},
|
|
|
|
DiffRemoved = {
|
|
fg = colors.red,
|
|
},
|
|
}
|