Skip to content

Commit

Permalink
fix: add opacity color
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Apr 16, 2021
1 parent 8cb5d31 commit 066c9ce
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/variations/darker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export const darker: IColors = {
cursor: '#FFCC00',
comments: '#545454',
deprecated: '#FFC777A1',
diffAdded: '#ADDB67',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
diffAdded: 'color(var(green) alpha(0.25))',
diffDeleted: 'color(var(red) alpha(0.25))',
diffModified: 'color(var(yellow) alpha(0.25))',
invalid: '#D46C6C66',
base: {
black: '#000000',
Expand Down
6 changes: 3 additions & 3 deletions src/variations/deepocean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export const deepocean: IColors = {
cursor: '#FFCC00',
comments: '#697098',
deprecated: '#FFC777A1',
diffAdded: '#9CCC65',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
diffAdded: 'color(var(green) alpha(0.30))',
diffDeleted: 'color(var(red) alpha(0.30))',
diffModified: 'color(var(yellow) alpha(0.30))',
invalid: '#D3423E66',
base: {
black: '#000000',
Expand Down
6 changes: 3 additions & 3 deletions src/variations/lighter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export const lighter: IColors = {
cursor: '#272727',
comments: '#90A4AE',
deprecated: '#FFC777A1',
diffAdded: '#9CCC65',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
diffAdded: 'color(var(green) alpha(0.30))',
diffDeleted: 'color(var(red) alpha(0.30))',
diffModified: 'color(var(yellow) alpha(0.30))',
invalid: '#D3423E66',
base: {
black: '#000000',
Expand Down
6 changes: 3 additions & 3 deletions src/variations/palenight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export const palenight: IColors = {
cursor: '#FFCC00',
comments: '#676E95',
deprecated: '#FFC777A1',
diffAdded: '#9CCC65',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
diffAdded: 'color(var(green) alpha(0.30))',
diffDeleted: 'color(var(red) alpha(0.30))',
diffModified: 'color(var(yellow) alpha(0.30))',
invalid: '#D3423E66',
base: {
black: '#000000',
Expand Down

0 comments on commit 066c9ce

Please sign in to comment.