From a8b394fc97f0240f0cbe00de706d99a8949d86c6 Mon Sep 17 00:00:00 2001 From: anavoi Date: Thu, 23 Oct 2025 13:13:36 +0200 Subject: [PATCH] make mention yellow --- src/app/styles/CustomHtml.css.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/CustomHtml.css.ts b/src/app/styles/CustomHtml.css.ts index ba7b921..7713ff0 100644 --- a/src/app/styles/CustomHtml.css.ts +++ b/src/app/styles/CustomHtml.css.ts @@ -147,9 +147,9 @@ export const Mention = recipe({ base: [ DefaultReset, { - backgroundColor: color.SurfaceVariant.Container, - color: color.SurfaceVariant.OnContainer, - boxShadow: `0 0 0 ${config.borderWidth.B300} ${color.SurfaceVariant.ContainerLine}`, + backgroundColor: color.Warning.Container, + color: color.Warning.Container, + boxShadow: `0 0 0 ${config.borderWidth.B300} ${color.Warning.ContainerLine}`, padding: `0 ${toRem(2)}`, borderRadius: config.radii.R300, fontWeight: config.fontWeight.W500, @@ -158,14 +158,14 @@ export const Mention = recipe({ variants: { highlight: { true: { - backgroundColor: color.Success.Container, - color: color.Success.OnContainer, - boxShadow: `0 0 0 ${config.borderWidth.B300} ${color.Success.ContainerLine}`, + backgroundColor: color.Warning.Container, + color: color.Warning.OnContainer, + boxShadow: `0 0 0 ${config.borderWidth.B300} ${color.Warning.ContainerLine}`, }, }, focus: { true: { - boxShadow: `0 0 0 ${config.borderWidth.B300} ${color.SurfaceVariant.OnContainer}`, + boxShadow: `0 0 0 ${config.borderWidth.B300} ${color.Warning.OnContainer}`, }, }, },