Skip to content

Commit

Permalink
Fix transparent background opacity
Browse files Browse the repository at this point in the history
Closes #207
  • Loading branch information
stevebauman committed May 28, 2024
1 parent 3219ab5 commit ddd8f4b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions data/backgrounds.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ export default [
id: 'transparent',
style: {
backgroundSize: '20px 20px',
opacity: 0.4,
backgroundPosition: '0 0, 0 10px, 10px -10px, -10px 0',
backgroundImage: `linear-gradient(45deg, var(--color-ui-gray-900) 25%, transparent 0),
linear-gradient(-45deg, var(--color-ui-gray-900) 25%, transparent 0),
linear-gradient(45deg, transparent 75%, var(--color-ui-gray-900) 0),
linear-gradient(-45deg, transparent 75%, var(--color-ui-gray-900) 0)`,
backgroundImage: `linear-gradient(45deg, var(--color-ui-gray-500) 25%, transparent 0),
linear-gradient(-45deg, var(--color-ui-gray-500) 25%, transparent 0),
linear-gradient(45deg, transparent 75%, var(--color-ui-gray-500) 0),
linear-gradient(-45deg, transparent 75%, var(--color-ui-gray-500) 0)`,
},
},
{
Expand Down

0 comments on commit ddd8f4b

Please sign in to comment.