From 1d50a3726b6f4d5ebff74f3324d7041a5fb63435 Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Fri, 5 Sep 2025 10:48:22 +0200 Subject: [PATCH] Add a partner badge for integrations --- .../CommunityMaintained/styles.module.css | 22 +++++------ src/theme/badges/PartnerBadge/index.js | 28 +++++++++++++ .../badges/PartnerBadge/styles.module.css | 39 +++++++++++++++++++ 3 files changed, 78 insertions(+), 11 deletions(-) create mode 100644 src/theme/badges/PartnerBadge/index.js create mode 100644 src/theme/badges/PartnerBadge/styles.module.css diff --git a/src/theme/badges/CommunityMaintained/styles.module.css b/src/theme/badges/CommunityMaintained/styles.module.css index d3be8ad0a88..22bc3a677c1 100644 --- a/src/theme/badges/CommunityMaintained/styles.module.css +++ b/src/theme/badges/CommunityMaintained/styles.module.css @@ -1,39 +1,39 @@ .CommunityMaintainedBadge { - background-color: #fbc9ef; + background-color: #69afff; border-radius: 16px; margin-top: 0px; margin-bottom: 15px; display: flex; align-items: center; padding: 5px 12px; - color: #990073; + color: #ffffff; display: inline-flex; margin-right: 5px; } .CommunityMaintainedIcon svg path { - fill: #fbc9ef; - stroke: #990073; + fill: #69afff; + stroke: #ffffff; } .CommunityMaintainedBadge a { - color: #990073; + color: #69afff; } .CommunityMaintainedBadge svg path { - color: #990073; + color: #69afff; } [data-theme="dark"] .CommunityMaintainedBadge { - background-color: #990073; - color: #fbeff8; + background-color: #69afff; + color: #ffffff; } [data-theme="dark"] .CommunityMaintainedBadge a { - color: #fbeff8; + color: #ffffff; } [data-theme="dark"] .CommunityMaintainedIcon svg path { - fill: #990073; - stroke: #fbeff8; + fill: #69afff; + stroke: #ffffff; } diff --git a/src/theme/badges/PartnerBadge/index.js b/src/theme/badges/PartnerBadge/index.js new file mode 100644 index 00000000000..68a56589514 --- /dev/null +++ b/src/theme/badges/PartnerBadge/index.js @@ -0,0 +1,28 @@ +import React from "react" +import styles from "./styles.module.css" + +const Icon = () => { + return ( +