Files
2023-09-07 00:56:03 +08:00

33 lines
533 B
CSS

/* 1. 页面背景色 */
.page{
background-color: #EDEDED;
/* #ifndef APP-PLUS-NVUE */
min-height: 100vh;
height: auto;
/* #endif */
/* #ifdef APP-PLUS-NVUE */
flex: 1;
/* #endif */
}
/* 2. 主背景色(原谅绿) */
.main-bg-color{
background-color: #08C060;
}
.main-bg-hover-color{
background-color: #08d869;
}
/* 3. 主文字色(原谅绿) */
.main-text-color{
color: #08C060;
}
.border-main{
border-color: #08C060!important;
}
.bg-chat-item{
background-color: #6BEE68;
}
.text-chat-item{
color: #6BEE68;
}