aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/services/user_highlighter/user_highlighter.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/services/user_highlighter/user_highlighter.js b/src/services/user_highlighter/user_highlighter.js
index b5f58040..145b3e5e 100644
--- a/src/services/user_highlighter/user_highlighter.js
+++ b/src/services/user_highlighter/user_highlighter.js
@@ -27,7 +27,11 @@ const highlightStyle = (prefs) => {
}
} else if (type === 'solid') {
return {
- backgroundColor: tintColor2,
+ backgroundImage: [
+ 'repeating-linear-gradient(90deg,',
+ `${tintColor} ,`,
+ `${tintColor} 20px`
+ ].join(' '),
...customProps
}
} else if (type === 'side') {