From 4d1e49671b2d553643984eab42f4b297e278ddf0 Mon Sep 17 00:00:00 2001 From: Olivier Date: Mon, 18 May 2026 11:48:49 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20add=20Apple=20brand=20icon=20(iPhone,?= =?UTF-8?q?=20iPad,=20MacBook,=20iMac,=20macOS,=20iOS=E2=80=A6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Uses siApple with hex override #555555 (visible on both light and dark themes — Apple's brand color #000000 is invisible on dark backgrounds). Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/brandIcons.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/brandIcons.js b/frontend/src/brandIcons.js index 3ce730f..c7521c9 100644 --- a/frontend/src/brandIcons.js +++ b/frontend/src/brandIcons.js @@ -8,6 +8,7 @@ import { siBitwarden, siVaultwarden, si1password, siKeepassxc, siVault, siMariadb, siKubernetes, + siApple, siDebian, siUbuntu, siAnsible, siDell, siHp, @@ -122,6 +123,9 @@ const BRANDS = [ // Orchestration { kw: ['kubernetes', 'k8s', 'kubectl', 'k3s'], icon: siKubernetes }, + // Écosystème Apple + { kw: ['apple', 'iphone', 'ipad', 'ipados', 'macbook', 'imac', 'mac mini', 'mac pro', 'mac studio', 'macos', 'mac os', 'ios', 'icloud', 'airpods', 'airdrop'], icon: { ...siApple, hex: '555555' } }, + // OS / distros { kw: ['debian'], icon: siDebian }, { kw: ['ubuntu'], icon: siUbuntu },