/* themes.css - 主题和配色 */

/* 定义 CSS 变量，方便全局修改主题 */
:root {
    --primary-color: #ff7e5f;
    --secondary-color: #333;
    --background-color: #f7f9fc;
    --text-color: #333;
    --light-text-color: #666;
    --white: #fff;
}

/* 可以根据需要添加不同的主题 */
