{t(`${i18nPrefix}.name`)}
{t(`${i18nPrefix}.description`)}
diff --git a/web/tailwind-common-config.ts b/web/tailwind-common-config.ts
index 57efbea57a..131f8f52ba 100644
--- a/web/tailwind-common-config.ts
+++ b/web/tailwind-common-config.ts
@@ -133,6 +133,8 @@ const config = {
'pipeline-template-card-hover-bg': 'var(--color-pipeline-template-card-hover-bg)',
'pipeline-add-documents-title-bg': 'var(--color-pipeline-add-documents-title-bg)',
'billing-plan-title-bg': 'var(--color-billing-plan-title-bg)',
+ 'billing-plan-card-premium-bg': 'var(--color-billing-plan-card-premium-bg)',
+ 'billing-plan-card-enterprise-bg': 'var(--color-billing-plan-card-enterprise-bg)',
},
animation: {
'spin-slow': 'spin 2s linear infinite',
diff --git a/web/themes/manual-dark.css b/web/themes/manual-dark.css
index 3c195c1c71..31b7cd2a70 100644
--- a/web/themes/manual-dark.css
+++ b/web/themes/manual-dark.css
@@ -70,4 +70,6 @@ html[data-theme="dark"] {
--color-pipeline-add-documents-title-bg: linear-gradient(92deg, rgba(54, 191, 250, 1) 0%, rgba(41, 109, 255, 1) 97.78%);
--color-background-gradient-bg-fill-chat-bubble-bg-3: #27314d;
--color-billing-plan-title-bg: linear-gradient(95deg, #0A68FF 29.47%, #03F 105.31%);
+ --color-billing-plan-card-premium-bg: linear-gradient(180deg, #F90 0%, rgba(255, 153, 0, 0.00) 100%);
+ --color-billing-plan-card-enterprise-bg: linear-gradient(180deg, #03F 0%, rgba(0, 51, 255, 0.00) 100%);
}
diff --git a/web/themes/manual-light.css b/web/themes/manual-light.css
index 886bf48ad4..4a80bfeab3 100644
--- a/web/themes/manual-light.css
+++ b/web/themes/manual-light.css
@@ -70,4 +70,6 @@ html[data-theme="light"] {
--color-pipeline-add-documents-title-bg: linear-gradient(92deg, rgba(11, 165, 236, 0.95) 0%, rgba(21, 90, 239, 0.95) 97.78%);
--color-background-gradient-bg-fill-chat-bubble-bg-3: #e1effe;
--color-billing-plan-title-bg: linear-gradient(95deg, #03F 29.47%, #03F 105.31%);
+ --color-billing-plan-card-premium-bg: linear-gradient(180deg, #F90 0%, rgba(255, 153, 0, 0.00) 100%);
+ --color-billing-plan-card-enterprise-bg: linear-gradient(180deg, #03F 0%, rgba(0, 51, 255, 0.00) 100%);
}