change current tag background

This commit is contained in:
yggverse 2024-12-16 15:54:28 +02:00
parent fc0cb06239
commit cc9a9b22fd

View File

@ -2,7 +2,7 @@ use gtk::{gdk::RGBA, TextTag};
pub fn new() -> TextTag { pub fn new() -> TextTag {
TextTag::builder() TextTag::builder()
.background_rgba(&RGBA::new(0.0, 0.0, 0.0, 1.0)) .background_rgba(&RGBA::new(0.0, 0.3906, 0.8653, 1.0)) // @TODO use accent colors after adw 1.6 update
.foreground_rgba(&RGBA::new(1.0, 1.0, 1.0, 1.0)) .foreground_rgba(&RGBA::new(1.0, 1.0, 1.0, 1.0))
.build() .build()
} }