Phuong Tran
Brand Identity
↑ Minimal variant: dot accent on name, no separate icon mark
<!-- Nav logo: P mark + name --> <a href="index.html" class="nav__logo" style="display:flex;align-items:center;gap:10px;"> <svg width="18" height="20" viewBox="0 0 64 72"> <path d="M12 8 L12 64 M12 8 L36 8 Q54 8 54 26 Q54 44 36 44 L12 44" stroke="#C2F542" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/> </svg> Phuong Tran </a>
<!-- Same SVG, different stroke --> <a href="index.html" class="nav__logo" style="display:flex;align-items:center;gap:10px;"> <svg width="18" height="20" viewBox="0 0 64 72"> <path d="M12 8 L12 64 M12 8 L36 8 Q54 8 54 26 Q54 44 36 44 L12 44" stroke="var(--accent)" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/> </svg> Phuong Tran </a>
<!-- Save as assets/favicon.svg --> <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> <rect width="32" height="32" rx="7" fill="#C2F542"/> <path d="M7 5 L7 27 M7 5 L17 5 Q24 5 24 12 Q24 19 17 19 L7 19" stroke="#080808" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/> </svg>
<!-- Add to <head> in all HTML files --> <link rel="icon" href="assets/favicon.svg" type="image/svg+xml"/> <link rel="apple-touch-icon" href="assets/favicon-180.png"/> <meta name="theme-color" content="#C2F542" media="(prefers-color-scheme: dark)"/> <meta name="theme-color" content="#3B0D9E" media="(prefers-color-scheme: light)"/>
/* Add to style.css — icon inherits accent token */ .nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); } .nav__logo svg path { stroke: var(--accent); /* adapts to dark/light automatically */ transition: stroke var(--dur) var(--ease); }