From 55eb0db317a983c316bb9c72d0b3f6cfbc3d0783 Mon Sep 17 00:00:00 2001 From: Anton Date: Thu, 26 Sep 2024 11:07:57 +0200 Subject: [PATCH] Add manifest logos --- manifest/README.md | 30 +++++++++++++++++++ manifest/logo-maskable.svg | 56 ++++++++++++++++++++++++++++++++++++ manifest/logo-monochrome.svg | 48 +++++++++++++++++++++++++++++++ manifest/logo.svg | 53 ++++++++++++++++++++++++++++++++++ manifest/manifest.json | 22 ++++++++++++++ 5 files changed, 209 insertions(+) create mode 100644 manifest/README.md create mode 100644 manifest/logo-maskable.svg create mode 100644 manifest/logo-monochrome.svg create mode 100644 manifest/logo.svg create mode 100644 manifest/manifest.json diff --git a/manifest/README.md b/manifest/README.md new file mode 100644 index 0000000..214cd88 --- /dev/null +++ b/manifest/README.md @@ -0,0 +1,30 @@ +# Manifest logos + +This is the Fklub logo optimized for use in websites and webapps. To add the logo to your website, you must add the following to the `` element in your HTML: + +```html + + +``` + +You can also add other fields to [manifest.json](manifest.json), such as `name` and `short_name`. Check out this article for more info: [https://developer.mozilla.org/en-US/docs/Web/Manifest](https://developer.mozilla.org/en-US/docs/Web/Manifest). + +## Technical details + +The ` + + F-Klub logo + + + + + + + + + + + + + + + + + + + diff --git a/manifest/logo-monochrome.svg b/manifest/logo-monochrome.svg new file mode 100644 index 0000000..8764438 --- /dev/null +++ b/manifest/logo-monochrome.svg @@ -0,0 +1,48 @@ + + + F-Klub logo + + + + + + + + + + + + + + + + diff --git a/manifest/logo.svg b/manifest/logo.svg new file mode 100644 index 0000000..9e446ce --- /dev/null +++ b/manifest/logo.svg @@ -0,0 +1,53 @@ + + + F-Klub logo + + + + + + + + + + + + + + + + + diff --git a/manifest/manifest.json b/manifest/manifest.json new file mode 100644 index 0000000..2c2cecf --- /dev/null +++ b/manifest/manifest.json @@ -0,0 +1,22 @@ +{ + "icons": [ + { + "src": "logo.svg", + "type": "image/svg+xml", + "sizes": "any", + "purpose": "any" + }, + { + "src": "logo-monochrome.svg", + "type": "image/svg+xml", + "sizes": "any", + "purpose": "monochrome" + }, + { + "src": "logo-maskable.svg", + "type": "image/svg+xml", + "sizes": "any", + "purpose": "maskable" + } + ] +}