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.
44 lines
809 B
44 lines
809 B
local colors = require("base46").get_colors "base_30"
|
|
|
|
return {
|
|
|
|
TelescopeBorder = {
|
|
fg = colors.darker_black,
|
|
bg = colors.darker_black,
|
|
},
|
|
|
|
TelescopePromptBorder = {
|
|
fg = colors.black2,
|
|
bg = colors.black2,
|
|
},
|
|
|
|
TelescopePromptNormal = {
|
|
fg = colors.white,
|
|
bg = colors.black2,
|
|
},
|
|
|
|
TelescopePromptPrefix = {
|
|
fg = colors.red,
|
|
bg = colors.black2,
|
|
},
|
|
|
|
TelescopeNormal = { bg = colors.darker_black },
|
|
|
|
TelescopePreviewTitle = {
|
|
fg = colors.black,
|
|
bg = colors.green,
|
|
},
|
|
|
|
TelescopePromptTitle = {
|
|
fg = colors.black,
|
|
bg = colors.red,
|
|
},
|
|
|
|
TelescopeResultsTitle = {
|
|
fg = colors.darker_black,
|
|
bg = colors.darker_black,
|
|
},
|
|
|
|
TelescopeSelection = { bg = colors.black2, fg = colors.white },
|
|
}
|