From 955d393983bb85ae6e23fa9e6cd5d648922c3bdb Mon Sep 17 00:00:00 2001 From: Benny Powers Date: Tue, 8 Oct 2024 17:36:24 +0300 Subject: [PATCH] fix(surface): text colour --- .changeset/puny-hotels-pull.md | 4 ++++ elements/rh-surface/rh-surface.css | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 .changeset/puny-hotels-pull.md diff --git a/.changeset/puny-hotels-pull.md b/.changeset/puny-hotels-pull.md new file mode 100644 index 0000000000..27049204ed --- /dev/null +++ b/.changeset/puny-hotels-pull.md @@ -0,0 +1,4 @@ +--- +"@rhds/elements": patch +--- +``: corrected themed text color diff --git a/elements/rh-surface/rh-surface.css b/elements/rh-surface/rh-surface.css index 42ed489c5c..1e6c4758ae 100644 --- a/elements/rh-surface/rh-surface.css +++ b/elements/rh-surface/rh-surface.css @@ -1,6 +1,9 @@ :host { display: block; background-color: var(--rh-color-surface); +} + +#slot { color: var(--rh-color-text-primary); }