fix solid color highlight

This commit is contained in:
Henry Jameson 2024-08-15 20:43:11 +03:00
parent 482f353f4d
commit 5384d3b7a2

View file

@ -27,7 +27,11 @@ const highlightStyle = (prefs) => {
} }
} else if (type === 'solid') { } else if (type === 'solid') {
return { return {
backgroundColor: tintColor2, backgroundImage: [
'repeating-linear-gradient(90deg,',
`${tintColor} ,`,
`${tintColor} 20px`
].join(' '),
...customProps ...customProps
} }
} else if (type === 'side') { } else if (type === 'side') {