added beta foreground soft color

This commit is contained in:
anovazzi1 2024-06-23 20:45:18 -03:00 committed by Gabriel Luiz Freitas Almeida
commit e71a63432d
3 changed files with 3 additions and 1 deletions

View file

@ -20,7 +20,7 @@ export default function ParentDisclosureComponent({
<div className="flex items-baseline gap-1 align-baseline">
<span className="parent-disclosure-title">{title}</span>
{title === "Experimental" && (
<div className="h-fit rounded-full bg-beta-background px-2 py-1 text-xs/3 font-semibold text-beta-foreground">
<div className="h-fit rounded-full bg-beta-background px-2 py-1 text-xs/3 font-semibold text-beta-foreground-soft">
BETA
</div>
)}

View file

@ -46,6 +46,7 @@
--beta-background: rgb(219 234 254);
--beta-foreground: rgb(37 99 235);
--beta-foreground-soft: rgb(37 99 235 / 80%);
--chat-bot-icon: #afe6ef;
--chat-user-icon: #aface9;

View file

@ -98,6 +98,7 @@ const config = {
"success-foreground": "var(--success-foreground)",
"beta-background": "var(--beta-background)",
"beta-foreground": "var(--beta-foreground)",
"beta-foreground-soft": "var(--beta-foreground-soft)",
"chat-bot-icon": "var(--chat-bot-icon)",
"chat-user-icon": "var(--chat-user-icon)",
ice: "var(--ice)",