Merge pull request #25 from ok2/codex/replace-center-spot-with-cobie-time-logo

Refine clock logo
This commit is contained in:
Kiyomichi Kosaka 2025-06-15 00:55:38 +02:00 committed by GitHub
commit d94cd3dd65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 24 additions and 1 deletions

22
logo.svg Normal file
View File

@ -0,0 +1,22 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<radialGradient id="bg" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#101018"/>
<stop offset="100%" stop-color="#050508"/>
</radialGradient>
<linearGradient id="ring" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#00ffff"/>
<stop offset="100%" stop-color="#ff00ff"/>
</linearGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<circle cx="50" cy="50" r="45" fill="url(#bg)" stroke="url(#ring)" stroke-width="4"/>
<path d="M55 30 H45 A20 20 0 0 0 45 70 H55" fill="none" stroke="#00ffff" stroke-width="6" stroke-linecap="round" filter="url(#glow)"/>
<path d="M65 30 H75 M70 30 V70" fill="none" stroke="#ff00ff" stroke-width="6" stroke-linecap="round" filter="url(#glow)"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -403,7 +403,8 @@
width: 1.2em;
height: 1.2em;
transform: translate(-50%, -50%);
background: #ffffff;
background: url('logo.svg') center/contain no-repeat;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
z-index: 2;