feat(icons): add pulse (#1559)
Some checks failed
Trigger Cloudflare Pages Build / cron_job (push) Has been cancelled

Co-authored-by: Dashboard Icons Manager <193821040+dashboard-icons-manager[bot]@users.noreply.github.com>
This commit is contained in:
dashboard-icons-manager[bot] 2025-06-18 07:20:26 +02:00 committed by GitHub
parent 12b0aaaab9
commit 9ce2934369
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 60 additions and 0 deletions

14
meta/pulse.json Normal file
View File

@ -0,0 +1,14 @@
{
"base": "svg",
"aliases": [],
"categories": [
"Cloud"
],
"update": {
"timestamp": "2025-06-18T05:18:25.028839",
"author": {
"id": 21307071,
"login": "Maxzhao1999"
}
}
}

View File

@ -24150,6 +24150,20 @@
"light": "forte-light"
}
},
"pulse": {
"base": "svg",
"aliases": [],
"categories": [
"Cloud"
],
"update": {
"timestamp": "2025-06-18T05:18:25.028839",
"author": {
"id": 21307071,
"login": "Maxzhao1999"
}
}
},
"ddclient": {
"base": "svg",
"aliases": [],

BIN
png/pulse.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

29
svg/pulse.svg Normal file
View File

@ -0,0 +1,29 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="5 5 90 90">
<title>Pulse Logo</title>
<style>
@keyframes pulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.7;
transform: scale(1.1);
}
}
.pulse-logo-circle {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
transform-origin: center;
}
/* Default (light mode) colors */
.pulse-logo-outer { fill: #2563eb; } /* blue-600 */
.pulse-logo-inner { fill: #ffffff; }
/* Dark mode colors */
@media (prefers-color-scheme: dark) {
.pulse-logo-outer { fill: #3b82f6; } /* blue-500 */
.pulse-logo-inner { fill: #dbeafe; } /* blue-100 */
}
</style>
<circle class="pulse-logo-outer" cx="50" cy="50" r="45"/>
<circle class="pulse-logo-inner pulse-logo-circle" cx="50" cy="50" r="25"/>
</svg>

After

Width:  |  Height:  |  Size: 884 B

View File

@ -1663,6 +1663,7 @@
"psitransfer.png",
"pterodactyl.png",
"pufferpanel.png",
"pulse.png",
"purelymail.png",
"pushfish.png",
"pushover.png",
@ -3698,6 +3699,7 @@
"prusa-research.svg",
"pterodactyl.svg",
"pufferpanel.svg",
"pulse.svg",
"purelymail.svg",
"pushfish.svg",
"pushover.svg",
@ -5868,6 +5870,7 @@
"psitransfer.webp",
"pterodactyl.webp",
"pufferpanel.webp",
"pulse.webp",
"purelymail.webp",
"pushfish.webp",
"pushover.webp",

BIN
webp/pulse.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB