Skip to content

Commit

Permalink
添加「简纸」主题
Browse files Browse the repository at this point in the history
  • Loading branch information
velade authored Apr 20, 2024
1 parent 6748b9c commit ab513a1
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions Themes/theme_Paper.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/* 置于背景时HTML(最终背景)样式
背景颜色必须使用 !important 修饰符
*/
.html_alt_back {
background-color: #333 !important;
}

/* body置于背景时若无背景则应用的样式
背景颜色必须使用 !important 修饰符
*/
.body_alt_back {
background-color: white !important;
}

/* body置于背景时应用的样式
*/
.body_inback {
border-radius: 10px;
}

/* 消息框样式 */
#_MessageBox_ {
/* 背景颜色
--bg-color: 无背景模糊时的颜色
--bg-color-blur: 有背景模糊时的颜色
都要进行设定,建议无背景模糊时透明度不要太高,否则会难以辨识
*/
--bg-color: rgba(253, 253, 253, 1);
--bg-color-blur: rgba(253, 253, 253, 1);
/* color: black; */
border: 1px rgba(253, 253, 253, 0.5) solid;
border-radius: 0 !important;
}

/* 右键选单样式 */
._Velfun_Contextmenu_ {
/* 背景颜色
--bg-color: 无背景模糊时的颜色
--bg-color-blur: 有背景模糊时的颜色
都要进行设定,建议无背景模糊时透明度不要太高,否则会难以辨识
*/
--bg-color: rgba(253, 253, 253, 1);
--bg-color-blur: rgba(253, 253, 253, 1);
/* color: black; */
border-radius: 0;
}

/* 右键选单hover著色 */
._Velfun_Contextmenu_option:hover {
background-color: rgba(0, 0, 0, 0.1);
}

/* 全屏选择项样式 */
._Velfun_Options_Item {
/* 选项按钮的颜色
--button-color: 无背景模糊时的颜色
--button-color-blur: 有背景模糊时的颜色
都要进行设定,建议无背景模糊时透明度不要太高,否则会难以辨识
*/
--button-color: rgba(253, 253, 253, 0.9);
--button-color-blur: rgba(253, 253, 253, 0.5);
/* color: black; */
border-radius: 20px;
}

/* 无中断提醒样式 */
._Velfun_Tip {
/* 背景颜色
--bg-color: 无背景模糊时的颜色
--bg-color-blur: 有背景模糊时的颜色
--st-color-mask: 起始颜色,可以做出弹出时以强调色覆盖,之后再慢慢变回正常颜色的效果
都要进行设定,建议无背景模糊时透明度不要太高,否则会难以辨识
*/
--bg-color: rgba(253, 253, 253, 0.9);
--bg-color-blur: rgba(253, 253, 253, 0.5);
--st-color-mask: rgba(255, 200, 0,0.5);
/* color: black; */
border-radius: 0px;
}

0 comments on commit ab513a1

Please sign in to comment.