MikiVL 728e6f38d3 重新设计素数计算器 favicon
使用 4x4 格栅表现埃氏筛法:亮蓝格(#4fc3f7)代表素数,暗格代表合数,
视觉上直观体现素数分布的稀疏性,与主站科技暗黑风格一致。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-26 10:07:14 +08:00

26 lines
1.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
<!-- 背景 -->
<rect width="32" height="32" rx="6" fill="#0d0f12"/>
<!-- 4x4 格栅亮格代表素数位2,3,5,7,11,13... 在 1-16 中2,3,5,7,11,13 -->
<!-- row1: 1,2,3,4 -->
<rect x="3" y="3" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<rect x="10" y="3" width="5" height="5" rx="1" fill="#4fc3f7"/>
<rect x="17" y="3" width="5" height="5" rx="1" fill="#4fc3f7"/>
<rect x="24" y="3" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<!-- row2: 5,6,7,8 -->
<rect x="3" y="10" width="5" height="5" rx="1" fill="#4fc3f7"/>
<rect x="10" y="10" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<rect x="17" y="10" width="5" height="5" rx="1" fill="#4fc3f7"/>
<rect x="24" y="10" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<!-- row3: 9,10,11,12 -->
<rect x="3" y="17" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<rect x="10" y="17" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<rect x="17" y="17" width="5" height="5" rx="1" fill="#4fc3f7"/>
<rect x="24" y="17" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<!-- row4: 13,14,15,16 -->
<rect x="3" y="24" width="5" height="5" rx="1" fill="#4fc3f7"/>
<rect x="10" y="24" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<rect x="17" y="24" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
<rect x="24" y="24" width="5" height="5" rx="1" fill="#4fc3f7" opacity="0.2"/>
</svg>