mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 23:48:16 -07:00
43 lines
809 B
Lua
43 lines
809 B
Lua
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 },
|
|
}
|