mirror of
https://github.com/gabehf/base46.git
synced 2026-03-10 07:50:31 -07:00
30 lines
1.4 KiB
Lua
30 lines
1.4 KiB
Lua
local colors = require("base46").get_colors "base_30"
|
|
|
|
return {
|
|
DevIconc = { bg = "NONE", fg = colors.blue },
|
|
DevIconcss = { bg = "NONE", fg = colors.blue },
|
|
DevIcondeb = { bg = "NONE", fg = colors.cyan },
|
|
DevIconDockerfile = { bg = "NONE", fg = colors.cyan },
|
|
DevIconhtml = { bg = "NONE", fg = colors.baby_pink },
|
|
DevIconjpeg = { bg = "NONE", fg = colors.dark_purple },
|
|
DevIconjpg = { bg = "NONE", fg = colors.dark_purple },
|
|
DevIconjs = { bg = "NONE", fg = colors.sun },
|
|
DevIconkt = { bg = "NONE", fg = colors.orange },
|
|
DevIconlock = { bg = "NONE", fg = colors.red },
|
|
DevIconlua = { bg = "NONE", fg = colors.blue },
|
|
DevIconmp3 = { bg = "NONE", fg = colors.white },
|
|
DevIconmp4 = { bg = "NONE", fg = colors.white },
|
|
DevIconout = { bg = "NONE", fg = colors.white },
|
|
DevIconpng = { bg = "NONE", fg = colors.dark_purple },
|
|
DevIconpy = { bg = "NONE", fg = colors.cyan },
|
|
DevIcontoml = { bg = "NONE", fg = colors.blue },
|
|
DevIconts = { bg = "NONE", fg = colors.teal },
|
|
DevIconttf = { bg = "NONE", fg = colors.white },
|
|
DevIconrb = { bg = "NONE", fg = colors.pink },
|
|
DevIconrpm = { bg = "NONE", fg = colors.orange },
|
|
DevIconvue = { bg = "NONE", fg = colors.vibrant_green },
|
|
DevIconwoff = { bg = "NONE", fg = colors.white },
|
|
DevIconwoff2 = { bg = "NONE", fg = colors.white },
|
|
DevIconxz = { bg = "NONE", fg = colors.sun },
|
|
DevIconzip = { bg = "NONE", fg = colors.sun },
|
|
}
|