最近の更新後、Ambiance and Radiance()のgtk-widgets.cssファイルを見ていました。「ノートブック」というタイトルのセクションで指摘した1つの違いを以下に示します。/usr/share/themes/theme_name/gtk-3.0/light-themes
雰囲気:
.notebook tab:active {
    color: @fg_color;
}
.notebook tab {
    color: shade (@bg_color, 0.48);
}
ラディアンス:
.notebook tab GtkLabel:active {
    color: @fg_color;
}
.notebook tab GtkLabel {
    color: shade (@bg_color, 0.48);
}
RadianceにはGtkLabelがありますが、Ambianceにはありません。私の質問は、GtkLabelの重要性を誰かが知っていますか、そしてなぜ1つのテーマにそれがあり、他のテーマにはないのですか?