瀏覽代碼

修改顶部标题的颜色

画安 3 周之前
父節點
當前提交
811e8842f6
共有 1 個文件被更改,包括 9 次插入9 次删除
  1. 9 9
      src/styles/base.css

+ 9 - 9
src/styles/base.css

@@ -142,8 +142,8 @@ html, body {
 .glow-text {
   position: relative;
 
-  /* 渐变文字 */
-  background: linear-gradient(45deg, #0033ff, #00aaff, #00ddff);
+  /* 渐变文字:蓝 → 浅蓝 → 白(无绿色) */
+  background: linear-gradient(45deg, #0044ff, #409cff, #ffffff);
   -webkit-background-clip: text;
   color: transparent;
 
@@ -157,25 +157,25 @@ html, body {
   inset: 0;
   z-index: -1;
 
-  background: linear-gradient(45deg, #0033ff, #00aaff, #00ddff);
+  background: linear-gradient(45deg, #0044ff, #409cff, #ffffff);
   -webkit-background-clip: text;
   color: transparent;
 
   animation: glowBreathe 2.5s ease-in-out infinite;
 }
 
-/* 主体呼吸(控制亮度) */
+/* 主体呼吸(控制亮度)- 蓝白色光晕 */
 @keyframes glowTextBreathe {
   0%, 100% {
     text-shadow:
-      0 0 4px rgba(0, 170, 255, 0.4),
-      0 0 8px rgba(0, 170, 255, 0.3);
+      0 0 4px rgba(64, 156, 255, 0.4),
+      0 0 8px rgba(64, 156, 255, 0.3);
   }
   50% {
     text-shadow:
-      0 0 10px rgba(0, 255, 255, 0.9),
-      0 0 20px rgba(0, 255, 255, 0.7),
-      0 0 40px rgba(0, 255, 255, 0.5);
+      0 0 10px rgba(255, 255, 255, 0.9),
+      0 0 20px rgba(64, 156, 255, 0.8),
+      0 0 40px rgba(0, 68, 255, 0.6);
   }
 }