diff --git a/src/App.tsx b/src/App.tsx index a157321..b28ac92 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -23,8 +23,7 @@ function App() { TuringFlow logo diff --git a/src/index.css b/src/index.css index 93e539b..eeca751 100644 --- a/src/index.css +++ b/src/index.css @@ -159,6 +159,18 @@ html, body, #root { inset 0 1px 0 rgba(255, 255, 255, 0.05); } +/* Logo 图片亮化效果 - 将深色logo转为亮色 */ +.logo-invert { + filter: brightness(0) invert(1); + opacity: 0.9; + transition: all 0.3s ease; +} + +.logo-invert:hover { + opacity: 1; + filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)); +} + /* 发光按钮 */ .glow-button { background: linear-gradient(135deg, var(--sa-accent-cyan), var(--sa-accent-blue));