Skip to content

Commit 38077b6

Browse files
committed
style: less green background
1 parent 3528209 commit 38077b6

11 files changed

Lines changed: 24 additions & 24 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Neovim colorscheme with locked Claret palette and structural syntax mapping.
66

77
## Core decisions
88

9-
- Dark bg `#180E10`, text `#DDD3C7`, type accent `#8995A8`
9+
- Dark bg `#180810`, text `#DDD3C7`, type accent `#8995A8`
1010
- Light bg `#FDF8F3`, text `#2A1F1A`, walnut `#7D5B38`, moss `#5A6B40`, type accent `#4A5670`
1111
- Keywords = rose/burgundy, functions = gold, strings = sage, types = slate, errors = terra
1212
- Keep errors red-family; types are not red-family

lua/claret/groups/diff.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ local M = {}
22

33
function M.get(colors, _)
44
return {
5-
DiffAdd = { fg = colors.sage_1, bg = colors.bg == '#180E10' and '#1D2418' or '#EAF1E2' },
6-
DiffChange = { fg = colors.gold_2, bg = colors.bg == '#180E10' and '#241D14' or '#F2E8DA' },
7-
DiffDelete = { fg = colors.terra_2, bg = colors.bg == '#180E10' and '#2A1417' or '#F5E3E1' },
5+
DiffAdd = { fg = colors.sage_1, bg = colors.bg == '#180810' and '#1D2418' or '#EAF1E2' },
6+
DiffChange = { fg = colors.gold_2, bg = colors.bg == '#180810' and '#241D14' or '#F2E8DA' },
7+
DiffDelete = { fg = colors.terra_2, bg = colors.bg == '#180810' and '#2A1417' or '#F5E3E1' },
88
DiffText = {
99
fg = colors.gold_1,
10-
bg = colors.bg == '#180E10' and '#332614' or '#E9D6BE',
10+
bg = colors.bg == '#180810' and '#332614' or '#E9D6BE',
1111
bold = true,
1212
},
1313
}

lua/claret/palette.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
return {
22
dark = {
3-
bg = '#180E10',
3+
bg = '#180810',
44
bg_soft = '#211618',
55
bg_mute = '#2B1F22',
66
divider = '#3A2E25',

ports/bat/ClaretDark.tmTheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<key>settings</key>
1111
<dict>
1212
<key>background</key>
13-
<string>#180E10</string>
13+
<string>#180810</string>
1414
<key>foreground</key>
1515
<string>#DDD3C7</string>
1616
<key>selection</key>

ports/ghostty/claret-dark.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTO-GENERATED by scripts/generate_ports.lua. Do not edit manually.
2-
background = #180E10
2+
background = #180810
33
foreground = #DDD3C7
44
cursor-color = #D4A76A
55
selection-background = #2B1F22

ports/opencode/claret.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://opencode.ai/theme.json",
33
"defs": {
4-
"dBg": "#180E10",
4+
"dBg": "#180810",
55
"dBgSoft": "#211618",
66
"dBgMute": "#2B1F22",
77
"dDivider": "#3A2E25",

ports/yazi/claret-dark.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
cwd = { fg = "#D4A76A" }
44
hovered = { fg = "#DDD3C7", bg = "#2B1F22" }
55
preview_hovered = { fg = "#DDD3C7", bg = "#2B1F22" }
6-
find_keyword = { fg = "#180E10", bg = "#D4A76A", bold = true }
6+
find_keyword = { fg = "#180810", bg = "#D4A76A", bold = true }
77
find_position = { fg = "#8995A8", bold = true }
88
marker_copied = { fg = "#8FA86E", bg = "#8FA86E" }
99
marker_cut = { fg = "#C44536", bg = "#C44536" }
1010
marker_marked = { fg = "#C75B7A", bg = "#C75B7A" }
11-
count_copied = { fg = "#180E10", bg = "#8FA86E" }
12-
count_cut = { fg = "#180E10", bg = "#C44536" }
13-
count_selected = { fg = "#180E10", bg = "#C75B7A" }
11+
count_copied = { fg = "#180810", bg = "#8FA86E" }
12+
count_cut = { fg = "#180810", bg = "#C44536" }
13+
count_selected = { fg = "#180810", bg = "#C75B7A" }
1414

1515
[status]
1616
separator_open = ""
1717
separator_close = ""
18-
separator_style = { fg = "#3A2E25", bg = "#180E10" }
19-
mode_normal = { fg = "#180E10", bg = "#D4A76A", bold = true }
20-
mode_select = { fg = "#180E10", bg = "#C75B7A", bold = true }
21-
mode_unset = { fg = "#180E10", bg = "#8995A8", bold = true }
18+
separator_style = { fg = "#3A2E25", bg = "#180810" }
19+
mode_normal = { fg = "#180810", bg = "#D4A76A", bold = true }
20+
mode_select = { fg = "#180810", bg = "#C75B7A", bold = true }
21+
mode_unset = { fg = "#180810", bg = "#8995A8", bold = true }
2222
progress_label = { fg = "#DDD3C7", bold = true }
2323
progress_normal = { fg = "#D4A76A", bg = "#211618" }
2424
progress_error = { fg = "#C44536", bg = "#211618" }
@@ -27,7 +27,7 @@ progress_error = { fg = "#C44536", bg = "#211618" }
2727
border = { fg = "#C75B7A" }
2828
title = { fg = "#DDD3C7" }
2929
value = { fg = "#DDD3C7" }
30-
selected = { fg = "#180E10", bg = "#D4A76A" }
30+
selected = { fg = "#180810", bg = "#D4A76A" }
3131

3232
[select]
3333
border = { fg = "#C75B7A" }

ports/zellij/claret-dark.kdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
themes {
33
claret-dark {
44
fg "#DDD3C7"
5-
bg "#180E10"
5+
bg "#180810"
66
black "#211618"
77
red "#C44536"
88
green "#8FA86E"

tests/load_spec.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ claret.load()
77
helpers.assert_eq(vim.g.colors_name, 'claret', 'auto picks dark')
88

99
local end_of_buffer = helpers.get_hl('EndOfBuffer')
10-
helpers.assert_eq(string.format('#%06X', end_of_buffer.bg), '#180E10', 'opaque EndOfBuffer bg')
10+
helpers.assert_eq(string.format('#%06X', end_of_buffer.bg), '#180810', 'opaque EndOfBuffer bg')
1111

1212
vim.o.background = 'light'
1313
claret.load()

tests/palette_spec.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local helpers = require('tests.helpers')
33
local palette = require('claret.palette')
44
local config = require('claret.config')
55

6-
helpers.assert_eq(palette.dark.bg, '#180E10', 'dark bg')
6+
helpers.assert_eq(palette.dark.bg, '#180810', 'dark bg')
77
helpers.assert_eq(palette.dark.type_1, '#8995A8', 'dark type accent')
88
helpers.assert_eq(palette.light.bg, '#FDF8F3', 'light bg')
99
helpers.assert_eq(palette.light.gold_1, '#7D5B38', 'light walnut gold')

0 commit comments

Comments
 (0)