From 9cb10afe64d851b13faab845c7d4de3a9ad0c162 Mon Sep 17 00:00:00 2001 From: sHa Date: Fri, 30 May 2025 02:20:14 +0300 Subject: [PATCH] Add new logos and update existing logo data - Added Apache, Bitwarden, Bluesky, Enpass, Messenger, MongoDB, MQTT, and Neo4j logos in SVG format. - Updated logo data in logos.json to include new entries and additional tags for existing logos. - Enhanced color definitions for some logos and added new color sets. - Improved brand representation for Meta and other logos with updated tags. --- public/data/logos.json | 123 ++++++++++++++++++++++++++-- public/logos/apache.svg | 111 +++++++++++++++++++++++++ public/logos/bitwarden.svg | 8 ++ public/logos/bluesky.svg | 4 + public/logos/enpass.svg | 5 ++ public/logos/facebook-messenger.svg | 15 ++++ public/logos/mongodb.svg | 11 +++ public/logos/mqtt.svg | 5 ++ public/logos/neo4j.svg | 18 ++++ 9 files changed, 293 insertions(+), 7 deletions(-) create mode 100644 public/logos/apache.svg create mode 100644 public/logos/bitwarden.svg create mode 100644 public/logos/bluesky.svg create mode 100644 public/logos/enpass.svg create mode 100644 public/logos/facebook-messenger.svg create mode 100644 public/logos/mongodb.svg create mode 100644 public/logos/mqtt.svg create mode 100644 public/logos/neo4j.svg diff --git a/public/data/logos.json b/public/data/logos.json index 1d40023..2a09266 100644 --- a/public/data/logos.json +++ b/public/data/logos.json @@ -68,6 +68,14 @@ "brand": "Google", "tags": [] }, + { + "name": "Apache", + "path": "logos/apache.svg", + "format": "SVG", + "disable": false, + "brand": "Apache", + "tags": [] + }, { "name": "Apple", "path": "logos/apple.svg", @@ -85,7 +93,8 @@ "pink": "#b01cab", "blue": "#00a1de", "silver": "#999", - "dark_grey": "#666" + "dark_grey": "#666", + "black": "#000" }, "targets": { "line1": "#line1", @@ -102,6 +111,9 @@ "dark_grey": { "line1": "dark_grey" }, + "black": { + "line1": "black" + }, "rainbow": { "line1": "green", "line2": "yellow", @@ -170,7 +182,8 @@ "tech" ], "colors": { - "dark_blue": "#080225" + "dark_blue": "#080225", + "light_blue": "#0091bd" }, "brand": "arm", "targets": { @@ -179,6 +192,9 @@ "sets": { "set_1": { "main": "dark_blue" + }, + "set_2": { + "main": "light_blue" } } }, @@ -285,6 +301,28 @@ ], "brand": "Bitcoin" }, + { + "name": "Bitwarden", + "path": "logos/bitwarden.svg", + "format": "SVG", + "disable": false, + "brand": "Bitwarden", + "tags": [ + "Selfhosted", + "Password Manager", + "Security" + ] + }, + { + "name": "Bluesky", + "path": "logos/bluesky.svg", + "format": "SVG", + "disable": false, + "brand": "Bluesky", + "tags": [ + "Social" + ] + }, { "name": "BMW", "path": "logos/bmw.svg", @@ -329,6 +367,44 @@ "disable": false, "brand": "DuckDuckGo" }, + { + "name": "Enpass", + "path": "logos/enpass.svg", + "format": "SVG", + "disable": false, + "brand": "Enpass", + "tags": [ + "Password Manager", + "Security" + ], + "colors": { + "blue": "#0d47a1", + "white": "#ffffff" + }, + "targets": { + "main": "#logo" + }, + "sets": { + "set_1": { + "main": "blue" + }, + "set_2": { + "main": "white" + } + } + }, + { + "name": "Messenger", + "path": "logos/facebook-messenger.svg", + "format": "SVG", + "disable": false, + "brand": "Meta", + "tags": [ + "Social", + "Communication", + "Messaging" + ] + }, { "name": "Forgejo", "path": "logos/forgejo.svg", @@ -1123,7 +1199,11 @@ "path": "logos/meta-facebook.svg", "format": "SVG", "disable": false, - "brand": "Meta" + "brand": "Meta", + "tags": [ + "Social", + "Communication" + ] }, { "name": "Meta", @@ -1139,8 +1219,7 @@ "disable": false, "brand": "Meta", "tags": [ - "social", - "media" + "Social" ], "colors": { "white": "#fff", @@ -1158,6 +1237,37 @@ } } }, + { + "name": "MongoDB", + "path": "logos/mongodb.svg", + "format": "SVG", + "disable": false, + "brand": "MongoDB", + "tags": [ + "Databases" + ] + }, + { + "name": "MQTT", + "path": "logos/mqtt.svg", + "format": "SVG", + "disable": false, + "brand": "MQTT", + "tags": [ + "IoT", + "Smart Home" + ] + }, + { + "name": "Neo4j", + "path": "logos/neo4j.svg", + "format": "SVG", + "disable": false, + "brand": "Neo4j", + "tags": [ + "Databases" + ] + }, { "name": "OpenVPN", "path": "logos/openvpn.svg", @@ -1234,8 +1344,7 @@ "disable": false, "brand": "Trakt", "tags": [ - "entertainment", - "streaming" + "Social" ] }, { diff --git a/public/logos/apache.svg b/public/logos/apache.svg new file mode 100644 index 0000000..364eaa6 --- /dev/null +++ b/public/logos/apache.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/logos/bitwarden.svg b/public/logos/bitwarden.svg new file mode 100644 index 0000000..573cc29 --- /dev/null +++ b/public/logos/bitwarden.svg @@ -0,0 +1,8 @@ + + + + diff --git a/public/logos/bluesky.svg b/public/logos/bluesky.svg new file mode 100644 index 0000000..9ab1635 --- /dev/null +++ b/public/logos/bluesky.svg @@ -0,0 +1,4 @@ + + + diff --git a/public/logos/enpass.svg b/public/logos/enpass.svg new file mode 100644 index 0000000..dc50eaf --- /dev/null +++ b/public/logos/enpass.svg @@ -0,0 +1,5 @@ + + + diff --git a/public/logos/facebook-messenger.svg b/public/logos/facebook-messenger.svg new file mode 100644 index 0000000..1d7a72b --- /dev/null +++ b/public/logos/facebook-messenger.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/public/logos/mongodb.svg b/public/logos/mongodb.svg new file mode 100644 index 0000000..55aa0fd --- /dev/null +++ b/public/logos/mongodb.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/public/logos/mqtt.svg b/public/logos/mqtt.svg new file mode 100644 index 0000000..1eba1ad --- /dev/null +++ b/public/logos/mqtt.svg @@ -0,0 +1,5 @@ + + + diff --git a/public/logos/neo4j.svg b/public/logos/neo4j.svg new file mode 100644 index 0000000..2acaa43 --- /dev/null +++ b/public/logos/neo4j.svg @@ -0,0 +1,18 @@ + + + + + + + + + +