/* Snows Blog 主题 - CSS 变量 */
:root {
  --theme: 'light';
  --theme-color: #25bbe4;
  --theme-light-color: #25bbe499;
  --theme-light-color-1: #25bbe4e6;
  --theme-light-color-2: #25bbe4cc;
  --theme-light-color-3: #25bbe4b3;
  --theme-light-color-4: #25bbe49f;
  --theme-light-color-5: #25bbe475;
  --theme-light-color-6: #25bbe462;
  --theme-light-color-7: #25bbe453;
  --theme-light-color-8: #25bbe44b;
  --theme-light-color-9: #25bbe434;
  
  --font-family: '喵喵体', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --content-max-width: 920px;
  --content-max-width-m: 95%;
  
  --border-radius-1: 6px;
  --border-radius-2: 10px;
  --border-radius-3: 15px;
  
  /* 浅色模式 */
  --bg-meun-wrap-color: #bfbebeee;
  --text-title-color: #333333;
  --text-color: #222222;
  --text-disabled-color: #8c8c8c;
  --text-color-2: #616060;
  --bg-wrap-color: #ffffffed;
  --bg-content-color: #ffffffbb;
  --border-color: #9b9a9a;
  --card-border-color: #ffffff;
  --bg-menu-hover-color: #ffffffd7;
  --bg-menu-color: #ffffff35;
  --code-light-color: #f38484;
  --code-color: #282727;
  --bg-code-color: #e2dfdf;
  --text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  --box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  --msg-bg-color: #ffffffee;
}

:root.dark {
  --theme: 'dark';
  --bg-meun-wrap-color: #0b0b0b92;
  --text-title-color: #5c5a5a;
  --text-color: #eeeeee;
  --text-disabled-color: #a19f9f;
  --text-color-2: #929292;
  --bg-wrap-color: #333333b3;
  --bg-content-color: #2f2f2fd1;
  --border-color: #cbc3c372;
  --card-border-color: #cbc3c372;
  --bg-menu-color: #00000039;
  --bg-menu-border-color: #8f8f8f;
  --bg-menu-hover-color: #000000a2;
  --code-light-color: #4fc1ff;
  --code-color: #d7d2d2;
  --bg-code-color: #222323;
  --text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
  --msg-bg-color: #363636;
}
