Skip to content

Commit

Permalink
fix: diff background color
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Apr 15, 2021
1 parent 0a50723 commit e0daa96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/specific/diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@ export default [
name: 'DIFF - Deleted',
scope: ['diff.deleted'],
settings: {
background: 'color(var(red) alpha(0.10))'
background: 'var(diffDeleted)'
},
},
{
name: 'DIFF - Deleted Char',
scope: ['diff.deleted.char'],
settings: {
background: 'color(var(red) alpha(0.10))'
background: 'var(diffDeleted)'
},
},
{
name: 'DIFF - Inserted',
scope: ['diff.inserted'],
settings: {
background: 'color(var(green) alpha(0.10))'
background: 'var(diffAdded)'
},
},
{
name: 'DIFF - Inserted Char',
scope: ['diff.inserted.char'],
settings: {
background: 'color(var(green) alpha(0.10))'
background: 'var(diffAdded)'
},
},
];

0 comments on commit e0daa96

Please sign in to comment.