/* 动态生成的主题CSS - green */
:root {
  --theme-color: #28a745;
  --theme-color-light: #e9f6ec;
  --theme-color-dark: #208537;
  --theme-color-hover: #3daf57;
}

/* 主题应用样式 */
.theme-primary { color: var(--theme-color) !important; }
.bg-theme-primary { background-color: var(--theme-color) !important; }
.btn-theme-primary { background-color: var(--theme-color); border-color: var(--theme-color); }
.btn-theme-primary:hover { background-color: var(--theme-color-hover); }
