Skip to content

Commit

Permalink
feat(theme): add barbecue support
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 5, 2024
1 parent fcc2ef2 commit c8ce539
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions lua/barbecue/theme/pastelnight.lua
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
local c = require('pastelnight.colors').setup({ transform = true })

local M = {
normal = { bg = c.none, fg = c.fg_dark },
normal = { bg = c.none, fg = c.base600 },

ellipsis = { fg = c.dark5 },
separator = { fg = c.dark5 },
ellipsis = { fg = c.base100 },
separator = { fg = c.base100 },
modified = { fg = c.warning },

dirname = { fg = c.dark5 },
basename = { fg = c.fg_dark, bold = true },
context = { fg = c.fg_dark },
dirname = { fg = c.base100 },
basename = { fg = c.base50, bold = true },
context = { fg = c.base50 },

context_file = { fg = c.fg_dark },
context_file = { fg = c.base50 },
context_module = { fg = c.yellow },
context_namespace = { fg = c.yellow },
context_package = { fg = c.blue },
context_class = { fg = c.orange },
context_method = { fg = c.blue },
context_property = { fg = c.green1 },
context_field = { fg = c.green1 },
context_property = { fg = c.green },
context_field = { fg = c.green },
context_constructor = { fg = c.blue },
context_enum = { fg = c.orange },
context_interface = { fg = c.orange },
context_function = { fg = c.blue },
context_variable = { fg = c.magenta },
context_constant = { fg = c.magenta },
context_variable = { fg = c.purple },
context_constant = { fg = c.purple },
context_string = { fg = c.green },
context_number = { fg = c.orange },
context_boolean = { fg = c.orange },
context_array = { fg = c.orange },
context_object = { fg = c.orange },
context_key = { fg = c.purple },
context_null = { fg = c.blue1 },
context_enum_member = { fg = c.green1 },
context_null = { fg = c.blue },
context_enum_member = { fg = c.green },
context_struct = { fg = c.orange },
context_event = { fg = c.orange },
context_operator = { fg = c.green1 },
context_type_parameter = { fg = c.green1 },
context_operator = { fg = c.green },
context_type_parameter = { fg = c.green },
}

return M

0 comments on commit c8ce539

Please sign in to comment.