Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
805e351
update context background
0xstepit Jan 8, 2025
0ef09ea
add basic barbecue theme
0xstepit Jan 9, 2025
ef582e6
add configurable special comments
0xstepit Jan 15, 2025
6b99978
update comment color
0xstepit Jan 15, 2025
e93d01e
improve search and substitution colors
0xstepit Jan 15, 2025
e8c0f9f
update colors
0xstepit Jan 15, 2025
9f8a5d7
improve colors for colorcolumns and whitespaces
0xstepit Jan 15, 2025
372f46b
improve treesitter context colors
0xstepit Jan 15, 2025
1733c44
revert lualine colors for better contrast
0xstepit Jan 15, 2025
fa375e4
improve flash nvim colors
0xstepit Jan 15, 2025
f902353
Merge pull request #30 from 0xstepit/stepit/special-comments
0xstepit Jan 15, 2025
a65aa80
small change in normal color
0xstepit Jan 15, 2025
720dfa8
Merge pull request #28 from 0xstepit/stepit/barbecue-theme
0xstepit Jan 15, 2025
77427e3
improve git colors
0xstepit Jan 15, 2025
220fd6e
git
0xstepit Jan 15, 2025
d0c2aed
Merge branch 'stepit/v2.0.2' into stepit/update-colors
0xstepit Jan 15, 2025
8edcad6
update lualine colors
0xstepit Jan 15, 2025
c5d87ab
update palette colors
0xstepit Jan 16, 2025
ff9e7c5
add snippet md background only to plugin
0xstepit Jan 17, 2025
719dc75
general colors improvement
0xstepit Jan 17, 2025
f8c524b
apply transparency to code block when transparent background
0xstepit Jan 17, 2025
2f502c5
Merge pull request #29 from 0xstepit/stepit/update-colors
0xstepit Jan 17, 2025
76b1145
add blink support
0xstepit Jan 23, 2025
2b6473d
Merge pull request #32 from 0xstepit/stepit/blink
0xstepit Jan 23, 2025
12600eb
include blink in the theme
0xstepit Jan 23, 2025
aace656
update tmux colorscheme and lualine
0xstepit Jan 23, 2025
87e149d
update just colors
0xstepit Jan 23, 2025
0d1e1a9
update active parameters colors
0xstepit Jan 23, 2025
a722965
use transparent in md blocks if transparent
0xstepit Jan 23, 2025
ed909ef
small refactoring colors and names
0xstepit Jan 23, 2025
64ceec3
maybe update to colors
0xstepit Feb 9, 2025
83cf209
delete old extras
0xstepit Feb 16, 2025
a2f6c8b
improve colors
0xstepit Feb 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions extra/bloom/ghostty-flow-cyan.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/bloom/ghostty-flow-green.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/bloom/ghostty-flow-orange.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/bloom/ghostty-flow-pink.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/bloom/ghostty-flow-yellow.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/eclipse/ghostty-flow-cyan.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/eclipse/ghostty-flow-green.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/eclipse/ghostty-flow-orange.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/eclipse/ghostty-flow-pink.config

This file was deleted.

33 changes: 0 additions & 33 deletions extra/eclipse/ghostty-flow-yellow.config

This file was deleted.

44 changes: 44 additions & 0 deletions lua/barbecue/theme/flow.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
local options = require("flow.config").options
local c = require("flow.colors").setup(options)

local M = {
normal = { bg = c.none, fg = c.grey[4] },

ellipsis = { fg = c.fg_gutter },
separator = { fg = c.fg_gutter },
modified = { fg = c.yellow },

dirname = { fg = c.grey[4] },
basename = { fg = c.light_blue },
context = { fg = c.grey[6] },

context_object = { fg = c.cyan },
context_class = { fg = c.cyan },
context_struct = { fg = c.cyan },

context_enum = { fg = c.purple },
context_interface = { fg = c.purple },
context_array = { fg = c.purple },
context_event = { fg = c.yellow },
context_number = { fg = c.yellow },
context_boolean = { link = "Number" },
context_file = { link = "Directory" },
context_module = { fg = c.yellow },
context_namespace = { fg = c.yellow },
context_package = { fg = c.blue },
context_method = { fg = c.blue },
context_property = { fg = c.green },
context_field = { fg = c.green },
context_constructor = { fg = c.blue },
context_function = { fg = c.blue },
context_variable = { fg = c.purple },
context_constant = { fg = c.purple },
context_string = { link = "String" },
context_key = { fg = c.purple },
context_null = { fg = c.blue },
context_enum_member = { fg = c.green },
context_operator = { fg = c.green },
context_type_parameter = { fg = c.purple },
}

return M
Loading