From 7628d9cfb7f59254743926547555fbe72cddc186 Mon Sep 17 00:00:00 2001 From: William Scalabre Date: Tue, 27 Feb 2024 13:58:34 +0100 Subject: [PATCH 1/2] fix tooltip default color --- website/src/components/guides/theming/defaults.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/components/guides/theming/defaults.ts b/website/src/components/guides/theming/defaults.ts index a12c71c5c..5d4bae506 100644 --- a/website/src/components/guides/theming/defaults.ts +++ b/website/src/components/guides/theming/defaults.ts @@ -110,7 +110,7 @@ const annotationsDefaults: CompleteTheme['annotations'] = { const tooltipDefaults: CompleteTheme['tooltip'] = { container: { background: '#ffffff', - color: extendedTheme.textColor, + color: "#000000", fontSize: 12, }, basic: {}, From b889c99bf8ccd3d516b82b79ba6145517d61420d Mon Sep 17 00:00:00 2001 From: William Scalabre Date: Wed, 28 Feb 2024 12:23:11 +0100 Subject: [PATCH 2/2] use correct tooltip container color --- website/src/components/guides/theming/defaults.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/components/guides/theming/defaults.ts b/website/src/components/guides/theming/defaults.ts index 5d4bae506..eef927fbb 100644 --- a/website/src/components/guides/theming/defaults.ts +++ b/website/src/components/guides/theming/defaults.ts @@ -110,7 +110,7 @@ const annotationsDefaults: CompleteTheme['annotations'] = { const tooltipDefaults: CompleteTheme['tooltip'] = { container: { background: '#ffffff', - color: "#000000", + color: extendedTheme.text.fill, fontSize: 12, }, basic: {},