My_GtkUi/Flos_Gtk4/res/style_dark.css

32 lines
633 B
CSS
Raw Normal View History

2023-02-12 19:08:31 +08:00
/*
您可以在这里输入任何 GTK 可识别的 CSS 规则
您可以点击上面的暂停按钮来暂时停用这个自定义 CSS
变更会立即应用到全局影响整个应用程序
*/
2023-03-16 16:40:15 +08:00
/* @import url("resource://org/gtk/daleclack/reset.css"); */
2023-02-12 19:08:31 +08:00
/*Style for menubar*/
2023-03-16 14:15:52 +08:00
.dark_style {
background: alpha(gray, 0.7);
2023-02-12 19:08:31 +08:00
}
2023-03-16 14:15:52 +08:00
.dark_style menubar {
background-color: alpha(gray, 0.7);
2023-02-12 19:08:31 +08:00
}
2023-03-16 14:15:52 +08:00
.dark_style box {
background-color: alpha(gray, 0.7);
2023-02-12 19:08:31 +08:00
}
2023-03-16 14:15:52 +08:00
.dark_style separator {
background-color: rgb(59, 59, 59);
2023-02-12 19:08:31 +08:00
}
2023-03-16 14:15:52 +08:00
.dark_style menubutton {
color: rgb(32, 32, 32);
2023-02-12 19:08:31 +08:00
}
2023-03-16 14:15:52 +08:00
.dark_style button {
color: white;
}