Switch to warm minimal theme: linen texture, muted warm tones, add service links (Gitea/Cloudreve/MC)

This commit is contained in:
2026-07-08 16:19:33 +08:00
parent 1214e48733
commit e992d8cbe7
21 changed files with 300 additions and 469 deletions
+201 -316
View File
@@ -1,452 +1,337 @@
/* ===== SNOWARE Unified Dark Theme ===== */
/* ===== SNOWARE — Minimal Warm Theme ===== */
:root {
--bg-deep: #060612;
--bg-card: rgba(15, 25, 55, 0.6);
--bg-glass: rgba(20, 35, 70, 0.35);
--accent: #4fc3f7;
--accent-alt: #7c4dff;
--text: #e8eaf6;
--text-muted: #90a4ae;
--radius: 12px;
--bg: #1c1b19;
--bg-soft: #262422;
--bg-card: #2e2c2a;
--accent: #c8a87a;
--accent-warm: #e8c9a0;
--accent-cool: #8a9a7e;
--text: #e0d8c8;
--text-muted: #9e9585;
--text-dim: #6b6358;
--border: rgba(200,168,122,0.12);
--border-hover: rgba(200,168,122,0.28);
--radius: 10px;
--font: 'Segoe UI', system-ui, -apple-system, sans-serif;
--transition: 0.3s ease;
--mono: 'Cascadia Code', 'Fira Code', monospace;
--transition: 0.25s ease;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font);
background: var(--bg-deep);
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
flex-direction: column;
line-height: 1.6;
line-height: 1.7;
/* Warm linen texture via subtle noise */
background-image:
url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 256px 256px;
}
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container { max-width: 920px; margin: 0 auto; padding: 0 24px; }
/* ===== Navigation ===== */
.site-nav {
position: sticky;
top: 0;
z-index: 100;
background: rgba(6, 6, 18, 0.85);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(79, 195, 247, 0.1);
padding: 12px 0;
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
position: sticky; top: 0; z-index: 100;
background: rgba(28,27,25,0.92);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
display: flex;
align-items: center;
gap: 10px;
color: var(--text);
font-weight: 700;
font-size: 18px;
text-decoration: none;
display: flex; align-items: center; gap: 10px;
color: var(--text); font-weight: 700; font-size: 17px; text-decoration: none;
}
.nav-logo { border-radius: 50%; }
.nav-links { display: flex; gap: 20px; }
.nav-brand img { border-radius: 50%; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 14px;
transition: color var(--transition);
position: relative;
color: var(--text-muted); text-decoration: none; font-size: 13.5px;
transition: color var(--transition); position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover { color: var(--accent-warm); }
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
content: ''; position: absolute; bottom: -3px; left: 0;
width: 0; height: 1.5px; background: var(--accent);
transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
/* ===== Homepage ===== */
#star-canvas-wrap {
position: relative;
.home-hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
padding: 60px 24px;
gap: 32px;
}
#star-canvas {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.home-overlay {
position: relative;
z-index: 2;
text-align: center;
padding: 40px 20px;
}
.logo-wrap {
position: relative;
display: inline-block;
margin-bottom: 20px;
}
.logo-wrap::before {
content: '';
position: absolute;
inset: -8px;
.home-hero .logo-wrap { text-align: center; }
.home-hero .home-logo {
width: 160px; height: 160px;
border-radius: 50%;
background: radial-gradient(circle, rgba(79,195,247,0.25), transparent 70%);
}
.home-logo {
border-radius: 50%;
border: 2px solid rgba(79,195,247,0.5);
background: rgba(15,25,55,0.6);
border: 2px solid rgba(200,168,122,0.3);
background: rgba(46,44,42,0.5);
backdrop-filter: blur(8px);
}
.home-title {
font-size: 48px;
font-weight: 800;
letter-spacing: 8px;
color: var(--accent);
text-shadow: 0 0 30px rgba(79,195,247,0.4), 0 0 60px rgba(79,195,247,0.2);
margin-bottom: 32px;
font-size: 44px; font-weight: 700; letter-spacing: 6px;
color: var(--accent-warm);
margin: 0;
}
.home-nav {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: center;
.home-subtitle {
color: var(--text-muted); font-size: 15px; text-align: center; max-width: 420px;
}
/* Homepage nav buttons */
.home-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.home-btn {
display: inline-block;
padding: 12px 28px;
border-radius: 50px;
background: var(--bg-glass);
border: 1px solid rgba(79,195,247,0.3);
color: var(--text);
text-decoration: none;
font-size: 15px;
font-weight: 500;
padding: 11px 26px; border-radius: 8px;
background: var(--bg-card); border: 1px solid var(--border);
color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500;
transition: all var(--transition);
backdrop-filter: blur(8px);
}
.home-btn:hover {
background: rgba(79,195,247,0.15);
border-color: var(--accent);
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(79,195,247,0.2);
border-color: var(--border-hover);
background: rgba(200,168,122,0.08);
transform: translateY(-1px);
}
/* Services section on homepage */
.home-services {
margin-top: 48px;
text-align: center;
}
.home-services h2 {
font-size: 15px; color: var(--text-dim); font-weight: 500;
letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.services-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
max-width: 600px; margin: 0 auto;
}
.service-card {
padding: 20px 16px; border-radius: var(--radius);
background: var(--bg-card); border: 1px solid var(--border);
text-decoration: none; color: var(--text);
transition: all var(--transition);
text-align: center;
}
.service-card:hover {
border-color: var(--border-hover);
background: rgba(200,168,122,0.06);
}
.service-icon {
display: flex; justify-content: center; margin-bottom: 10px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.service-card h3 { font-size: 14px; color: var(--accent-warm); margin-bottom: 4px; }
.service-card p { font-size: 12.5px; color: var(--text-muted); }
.service-card.no-link { cursor: default; }
.service-card.no-link:hover { background: var(--bg-card); border-color: var(--border); transform: none; }
/* ===== Page Hero ===== */
.page-hero {
text-align: center;
padding: 80px 24px 40px;
background: linear-gradient(180deg, rgba(6,6,18,0) 0%, rgba(6,6,18,1) 100%);
text-align: center; padding: 72px 24px 36px;
}
.page-hero h1 {
font-size: 40px;
font-weight: 800;
color: var(--accent);
text-shadow: 0 0 20px color-mix(in srgb, var(--accent) 30%, transparent);
margin-bottom: 8px;
}
.page-hero .subtitle {
color: var(--text-muted);
font-size: 18px;
font-size: 36px; font-weight: 700;
color: var(--accent-warm); margin-bottom: 6px;
}
.page-hero .subtitle { color: var(--text-muted); font-size: 16px; }
/* ===== Page Content ===== */
.page-content { padding: 20px 24px 60px; }
.page-content { padding: 16px 24px 60px; }
/* ===== Buttons ===== */
.btn {
display: inline-block;
padding: 10px 24px;
border-radius: 8px;
font-size: 15px;
font-weight: 500;
text-decoration: none;
transition: all var(--transition);
cursor: pointer;
display: inline-block; padding: 9px 22px; border-radius: 8px;
font-size: 14px; font-weight: 500; text-decoration: none;
transition: all var(--transition); cursor: pointer;
border: 1px solid transparent;
}
.btn-primary {
background: var(--accent);
color: #0a0a2e;
border-color: var(--accent);
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-warm); }
.btn-accent {
background: color-mix(in srgb, var(--accent) 20%, var(--bg-card));
color: var(--accent);
border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
.btn-accent:hover { background: color-mix(in srgb, var(--accent) 30%, var(--bg-card)); }
.btn-outline {
background: transparent;
color: var(--text-muted);
border-color: rgba(144,164,174,0.3);
background: rgba(200,168,122,0.1); color: var(--accent);
border-color: var(--border-hover);
}
.btn-accent:hover { background: rgba(200,168,122,0.18); }
.btn-outline { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text-muted); color: var(--text); }
.btn-lg { padding: 14px 32px; font-size: 17px; }
.btn-lg { padding: 13px 30px; font-size: 16px; }
/* ===== Glass Cards ===== */
.feature-card {
background: var(--bg-glass);
border: 1px solid rgba(79,195,247,0.1);
/* ===== Cards ===== */
.card-base {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 24px;
text-align: center;
backdrop-filter: blur(8px);
transition: border-color var(--transition);
backdrop-filter: blur(6px);
transition: all var(--transition);
}
.feature-card:hover { border-color: rgba(79,195,247,0.3); }
.feature-card h3 { color: var(--accent); margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.card-base:hover { border-color: var(--border-hover); }
.feature-card {
padding: 22px; text-align: center;
}
.feature-card h3 { color: var(--accent-warm); font-size: 15px; margin-bottom: 6px; }
.feature-card p { color: var(--text-muted); font-size: 13px; }
.feature-icon { font-size: 28px; margin-bottom: 10px; color: var(--accent); }
/* ===== Resources Section ===== */
.res-intro {
text-align: center;
margin-bottom: 32px;
}
.res-intro-text { color: var(--text); font-size: 16px; }
.res-intro-note { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.res-intro { text-align: center; margin-bottom: 28px; }
.res-intro-text { color: var(--text); font-size: 15px; }
.res-actions {
display: flex;
gap: 16px;
justify-content: center;
margin-bottom: 40px;
flex-wrap: wrap;
display: flex; gap: 14px; justify-content: center;
margin-bottom: 36px; flex-wrap: wrap;
}
.res-features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 32px;
display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px;
}
/* ===== File List ===== */
.filelist-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.subject-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 28px 20px;
background: var(--bg-glass);
border: 1px solid color-mix(in srgb, var(--color) 25%, transparent);
display: flex; flex-direction: column; align-items: center; gap: 8px;
padding: 24px 16px;
background: var(--bg-card);
border: 1px solid color-mix(in srgb, var(--color) 20%, transparent);
border-radius: var(--radius);
text-decoration: none;
color: var(--text);
backdrop-filter: blur(8px);
text-decoration: none; color: var(--text);
transition: all var(--transition);
}
.subject-card:hover {
border-color: var(--color);
transform: translateY(-3px);
box-shadow: 0 8px 24px color-mix(in srgb, var(--color) 15%, transparent);
background: color-mix(in srgb, var(--color) 6%, var(--bg-card));
transform: translateY(-2px);
}
.subject-icon { color: var(--color); }
.subject-card h3 { font-size: 18px; }
.subject-pw { font-size: 13px; color: var(--text-muted); }
.subject-icon svg { width: 36px; height: 36px; stroke: var(--color); fill: none; stroke-width: 1.5; }
.subject-card h3 { font-size: 17px; }
.subject-pw { font-size: 12.5px; color: var(--text-muted); }
.subject-pw code {
background: rgba(255,255,255,0.08);
padding: 2px 8px;
border-radius: 4px;
color: var(--color);
background: rgba(255,255,255,0.06); padding: 2px 7px; border-radius: 4px;
color: var(--color); font-family: var(--mono);
}
/* ===== Software Section ===== */
.about-intro {
text-align: center;
margin-bottom: 40px;
padding: 24px;
background: var(--bg-glass);
border-radius: var(--radius);
}
.about-intro p { color: var(--text-muted); margin-bottom: 16px; }
.project-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
text-align: center; margin-bottom: 36px; padding: 22px;
background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.about-intro p { color: var(--text-muted); margin-bottom: 14px; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-card {
display: flex;
flex-direction: column;
gap: 12px;
padding: 28px;
background: var(--bg-glass);
border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
display: flex; flex-direction: column; gap: 10px; padding: 24px;
background: var(--bg-card);
border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
border-radius: var(--radius);
text-decoration: none;
color: var(--text);
backdrop-filter: blur(8px);
text-decoration: none; color: var(--text);
transition: all var(--transition);
}
.project-card:hover {
border-color: var(--accent);
transform: translateY(-3px);
box-shadow: 0 8px 30px color-mix(in srgb, var(--accent) 12%, transparent);
background: color-mix(in srgb, var(--accent) 4%, var(--bg-card));
transform: translateY(-2px);
}
.card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.card-header h3 { font-size: 20px; color: var(--accent); }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.card-header h3 { font-size: 18px; color: var(--accent-warm); }
.card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.tag {
font-size: 11px;
padding: 3px 10px;
border-radius: 50px;
background: color-mix(in srgb, var(--accent) 15%, var(--bg-card));
color: var(--accent);
border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
font-size: 11px; padding: 2px 9px; border-radius: 50px;
background: color-mix(in srgb, var(--accent) 12%, var(--bg-card));
color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.card-desc { color: var(--text-muted); font-size: 14px; }
.card-desc { color: var(--text-muted); font-size: 13.5px; }
.card-links { margin-top: auto; }
.card-link { font-size: 14px; color: var(--accent); }
.card-link { font-size: 13.5px; color: var(--accent); }
/* ===== Software Detail ===== */
.sw-links {
display: flex;
gap: 12px;
justify-content: center;
margin-bottom: 40px;
flex-wrap: wrap;
}
.sw-features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-bottom: 40px;
}
.sw-links { display: flex; gap: 10px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.sw-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 36px; }
.sw-section {
margin-bottom: 32px;
padding: 24px;
background: var(--bg-glass);
border-radius: var(--radius);
}
.sw-section h2 {
color: var(--accent);
margin-bottom: 12px;
font-size: 22px;
margin-bottom: 28px; padding: 22px;
background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.sw-section h2 { color: var(--accent-warm); margin-bottom: 10px; font-size: 20px; }
.sw-code {
background: rgba(255,255,255,0.06);
padding: 12px 18px;
border-radius: 8px;
font-family: 'Cascadia Code', 'Fira Code', monospace;
font-size: 14px;
overflow-x: auto;
}
.usage-list { display: flex; flex-direction: column; gap: 12px; }
.usage-item {
display: flex;
gap: 12px;
align-items: center;
background: rgba(255,255,255,0.05); padding: 10px 16px; border-radius: 6px;
font-family: var(--mono); font-size: 13px; overflow-x: auto; color: var(--text);
}
.usage-list { display: flex; flex-direction: column; gap: 10px; }
.usage-item { display: flex; gap: 10px; align-items: center; }
.usage-item code {
background: rgba(255,255,255,0.06);
padding: 6px 12px;
border-radius: 6px;
font-family: 'Cascadia Code', 'Fira Code', monospace;
font-size: 13px;
white-space: nowrap;
background: rgba(255,255,255,0.05); padding: 5px 10px; border-radius: 5px;
font-family: var(--mono); font-size: 12.5px; white-space: nowrap;
}
.usage-item span { color: var(--text-muted); }
.usage-item span { color: var(--text-muted); font-size: 13px; }
/* ===== Drag Ball ===== */
.drag-ball-area {
text-align: center;
padding: 24px;
margin: 40px 0;
background: var(--bg-glass);
border-radius: var(--radius);
text-align: center; padding: 22px; margin: 36px 0;
background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.drag-hint { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.drag-hint { color: var(--text-muted); font-size: 13px; margin-top: 6px; }
/* ===== XAGuarder ===== */
.xag-intro {
text-align: center;
padding: 40px;
background: var(--bg-glass);
border-radius: var(--radius);
max-width: 600px;
margin: 0 auto;
text-align: center; padding: 36px;
background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
max-width: 560px; margin: 0 auto;
}
.xag-logo { border-radius: 50%; margin-bottom: 16px; }
.xag-intro h2 { margin-bottom: 16px; color: var(--accent); }
.xag-intro p { color: var(--text-muted); margin-bottom: 20px; }
.xag-logo { border-radius: 50%; margin-bottom: 14px; }
.xag-intro h2 { margin-bottom: 14px; color: var(--accent-warm); }
.xag-intro p { color: var(--text-muted); margin-bottom: 18px; }
/* ===== Warning Page ===== */
.warning-page {
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
min-height: 80vh; display: flex; align-items: center; justify-content: center;
}
.warning-content {
text-align: center;
padding: 60px;
background: rgba(244,67,54,0.08);
border: 2px solid rgba(244,67,54,0.3);
border-radius: var(--radius);
max-width: 500px;
text-align: center; padding: 50px;
background: rgba(180,60,50,0.06); border: 2px solid rgba(180,60,50,0.25);
border-radius: var(--radius); max-width: 480px;
}
.warning-logo { border-radius: 50%; margin-bottom: 20px; }
.warning-content h1 { color: #f44336; font-size: 28px; margin-bottom: 16px; }
.warning-text { font-size: 18px; color: var(--text); margin-bottom: 8px; }
.warning-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.warning-logo { border-radius: 50%; margin-bottom: 18px; }
.warning-content h1 { color: #b84040; font-size: 26px; margin-bottom: 14px; }
.warning-text { font-size: 16px; color: var(--text); margin-bottom: 6px; }
.warning-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 22px; }
/* ===== Error Page ===== */
.error-page {
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
}
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.error-content { text-align: center; }
.error-logo { border-radius: 50%; margin-bottom: 20px; }
.error-content h1 { font-size: 72px; color: var(--accent); margin-bottom: 12px; }
.error-logo { border-radius: 50%; margin-bottom: 18px; }
.error-content h1 { font-size: 64px; color: var(--accent); margin-bottom: 10px; }
.error-content p { color: var(--text-muted); }
.error-hint { font-size: 14px; margin-bottom: 24px; }
.error-hint { font-size: 13px; margin-bottom: 22px; }
/* ===== Footer ===== */
.site-footer {
text-align: center;
padding: 24px;
border-top: 1px solid rgba(79,195,247,0.08);
color: var(--text-muted);
font-size: 13px;
margin-top: auto;
text-align: center; padding: 22px;
border-top: 1px solid var(--border);
color: var(--text-dim); font-size: 12.5px; margin-top: auto;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
.nav-inner { flex-direction: column; gap: 12px; }
.nav-links { gap: 12px; }
.home-title { font-size: 32px; letter-spacing: 4px; }
.home-logo { width: 140px; height: 140px; }
.home-nav { gap: 10px; }
.home-btn { padding: 10px 22px; font-size: 14px; }
.page-hero h1 { font-size: 28px; }
.nav-inner { flex-direction: column; gap: 10px; }
.nav-links { gap: 14px; }
.home-title { font-size: 30px; letter-spacing: 4px; }
.home-hero .home-logo { width: 120px; height: 120px; }
.services-grid { grid-template-columns: 1fr; max-width: 320px; }
.page-hero h1 { font-size: 26px; }
.project-grid { grid-template-columns: 1fr; }
.filelist-grid { grid-template-columns: repeat(2, 1fr); }
.res-features, .sw-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
.filelist-grid { grid-template-columns: 1fr; }
.res-features, .sw-features { grid-template-columns: 1fr; }
-68
View File
@@ -1,68 +0,0 @@
(function () {
const canvas = document.getElementById('star-canvas');
if (!canvas) return;
const ctx = canvas.getContext('2d');
let w, h;
function resize() {
w = canvas.width = canvas.parentElement.clientWidth;
h = canvas.height = canvas.parentElement.clientHeight;
}
resize();
window.addEventListener('resize', resize);
const STAR_COUNT = 300;
const colors = ['#ffffff', '#e0f7fa', '#fff9c4', '#fce4ec', '#4fc3f7'];
const stars = [];
for (let i = 0; i < STAR_COUNT; i++) {
stars.push({
x: Math.random() * w,
y: Math.random() * h,
baseR: Math.random() * 1.5 + 0.3,
phase: Math.random() * Math.PI * 2,
speed: Math.random() * 0.02 + 0.005,
color: colors[Math.floor(Math.random() * colors.length)],
glow: Math.random() > 0.7
});
}
function draw() {
ctx.clearRect(0, 0, w, h);
const t = performance.now() * 0.001;
for (const s of stars) {
const r = s.baseR + Math.sin(t * s.speed * 10 + s.phase) * s.baseR * 0.6;
const alpha = 0.4 + Math.sin(t * s.speed * 8 + s.phase) * 0.35;
ctx.globalAlpha = Math.max(0.1, alpha);
ctx.beginPath();
ctx.arc(s.x, s.y, Math.max(0.1, r), 0, Math.PI * 2);
ctx.fillStyle = s.color;
ctx.fill();
if (s.glow) {
const gr = ctx.createRadialGradient(s.x, s.y, 0, s.x, s.y, r * 3);
gr.addColorStop(0, s.color);
gr.addColorStop(1, 'transparent');
ctx.globalAlpha = alpha * 0.15;
ctx.beginPath();
ctx.arc(s.x, s.y, r * 3, 0, Math.PI * 2);
ctx.fillStyle = gr;
ctx.fill();
}
}
ctx.globalAlpha = 1;
requestAnimationFrame(draw);
}
draw();
// reposition on resize
window.addEventListener('resize', () => {
for (const s of stars) {
s.x = (s.x / w) * canvas.width;
s.y = (s.y / h) * canvas.height;
}
});
})();
+24 -36
View File
@@ -1,47 +1,35 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
<defs>
<radialGradient id="bg-grad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1a237e"/>
<stop offset="100%" stop-color="#0a0a2e"/>
<stop offset="0%" stop-color="#3d3530"/>
<stop offset="100%" stop-color="#262220"/>
</radialGradient>
<radialGradient id="glow" cx="50%" cy="50%" r="50%">
<stop offset="60%" stop-color="#4fc3f7" stop-opacity="0"/>
<stop offset="100%" stop-color="#4fc3f7" stop-opacity="0.3"/>
</radialGradient>
<filter id="blur">
<feGaussianBlur stdDeviation="2"/>
<filter id="soft-glow">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>
</filter>
</defs>
<!-- Outer glow ring -->
<circle cx="100" cy="100" r="96" fill="none" stroke="#4fc3f7" stroke-width="1" opacity="0.4" filter="url(#blur)"/>
<circle cx="100" cy="100" r="96" fill="none" stroke="#4fc3f7" stroke-width="0.5" opacity="0.6"/>
<!-- Main circle background -->
<!-- Outer ring -->
<circle cx="100" cy="100" r="96" fill="none" stroke="#c8b89a" stroke-width="1.2" opacity="0.35"/>
<!-- Main circle -->
<circle cx="100" cy="100" r="90" fill="url(#bg-grad)"/>
<circle cx="100" cy="100" r="90" fill="url(#glow)"/>
<!-- Snowflake pattern: 6 arms -->
<g stroke="#4fc3f7" stroke-width="2" fill="none" opacity="0.85" stroke-linecap="round">
<!-- Main 6 arms -->
<line x1="100" y1="45" x2="100" y2="155"/>
<line x1="52" y1="72" x2="148" y2="128"/>
<line x1="52" y1="128" x2="148" y2="72"/>
<!-- Branches on vertical arm -->
<line x1="100" y1="55" x2="88" y2="62"/>
<line x1="100" y1="55" x2="112" y2="62"/>
<line x1="100" y1="145" x2="88" y2="138"/>
<line x1="100" y1="145" x2="112" y2="138"/>
<!-- Branches on upper-right arm -->
<line x1="140" y1="78" x2="148" y2="68"/>
<line x1="140" y1="78" x2="130" y2="75"/>
<line x1="60" y1="122" x2="52" y2="132"/>
<line x1="60" y1="122" x2="70" y2="125"/>
<!-- Branches on upper-left arm -->
<line x1="60" y1="78" x2="52" y2="68"/>
<line x1="60" y1="78" x2="70" y2="75"/>
<line x1="140" y1="122" x2="148" y2="132"/>
<line x1="140" y1="122" x2="130" y2="125"/>
<!-- Snowflake: 6 arms -->
<g stroke="#d4c8b0" stroke-width="2.2" fill="none" stroke-linecap="round" filter="url(#soft-glow)">
<line x1="100" y1="42" x2="100" y2="158"/>
<line x1="50" y1="71" x2="150" y2="129"/>
<line x1="50" y1="129" x2="150" y2="71"/>
<!-- Branches vertical -->
<line x1="100" y1="52" x2="87" y2="59"/><line x1="100" y1="52" x2="113" y2="59"/>
<line x1="100" y1="148" x2="87" y2="141"/><line x1="100" y1="148" x2="113" y2="141"/>
<!-- Branches right -->
<line x1="142" y1="77" x2="150" y2="67"/><line x1="142" y1="77" x2="132" y2="74"/>
<line x1="58" y1="123" x2="50" y2="133"/><line x1="58" y1="123" x2="68" y2="126"/>
<!-- Branches left -->
<line x1="58" y1="77" x2="50" y2="67"/><line x1="58" y1="77" x2="68" y2="74"/>
<line x1="142" y1="123" x2="150" y2="133"/><line x1="142" y1="123" x2="132" y2="126"/>
</g>
<!-- Center dot -->
<circle cx="100" cy="100" r="4" fill="#4fc3f7"/>
<circle cx="100" cy="100" r="4.5" fill="#c8b89a"/>
<!-- S.A. text -->
<text x="100" y="108" text-anchor="middle" font-family="'Segoe UI', system-ui, sans-serif" font-size="24" font-weight="700" fill="#e0e0e0" letter-spacing="2">S.A.</text>
<text x="100" y="108" text-anchor="middle" font-family="'Segoe UI',system-ui,sans-serif" font-size="22" font-weight="700" fill="#d4c8b0" letter-spacing="3">S.A.</text>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB