Skip to content

Commit 8f4e98a

Browse files
committed
fix: use accent color for selector indicators
1 parent dbbef52 commit 8f4e98a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

app/components/Package/TimelineChart.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,10 @@ const config = computed<VueUiXyConfig>(() => {
263263
chart: {
264264
backgroundColor: colors.value.bg,
265265
height: 200,
266-
highlighter: { useLine: true },
266+
highlighter: {
267+
useLine: true,
268+
color: colors.value.accent,
269+
},
267270
grid: {
268271
showHorizontalLines: true,
269272
stroke: colors.value.border,
@@ -390,6 +393,7 @@ const config = computed<VueUiXyConfig>(() => {
390393
minimap: {
391394
show: true,
392395
lineColor: '#FAFAFA',
396+
indicatorColor: colors.value.accent,
393397
selectedColor: colors.value.accent,
394398
selectedColorOpacity: 0.06,
395399
frameColor: colors.value.border,

0 commit comments

Comments
 (0)