Skip to content

Commit

Permalink
feat: tone down git diff highlights (added, removed)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Dec 11, 2023
1 parent bf4f1b2 commit cb6e423
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/generators/mkui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,10 +408,10 @@ function mkui({ ui, code }: mkuiParams): UIColourPalette {
*/
'diffEditor.border': ui.border.hex(),
'diffEditor.diagonalFill': ui.text.secondary.alpha(ch(0x44)).hexa(),
'diffEditor.insertedTextBackground': ui.scm.added.alpha(ch(0x33)).hexa(),
'diffEditor.insertedLineBackground': ui.scm.added.alpha(ch(0x22)).hexa(),
'diffEditor.removedTextBackground': ui.scm.deleted.alpha(ch(0x33)).hexa(),
'diffEditor.removedLineBackground': ui.scm.deleted.alpha(ch(0x22)).hexa(),
'diffEditor.insertedTextBackground': ui.scm.added.alpha(ch(0x22)).hexa(),
'diffEditor.insertedLineBackground': ui.scm.added.alpha(ch(0x09)).hexa(),
'diffEditor.removedTextBackground': ui.scm.deleted.alpha(ch(0x22)).hexa(),
'diffEditor.removedLineBackground': ui.scm.deleted.alpha(ch(0x09)).hexa(),
// 'diffEditor.insertedTextBorder': ui.scm.added.alpha(ch(0x33)).hexa(),
// 'diffEditor.removedTextBorder': ui.scm.deleted.alpha(ch(0x33)).hexa(),

Expand Down

0 comments on commit cb6e423

Please sign in to comment.