1
0
mirror of https://github.com/YGGverse/Yoda.git synced 2025-01-21 16:49:56 +00:00

change current tag background

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

@ -2,7 +2,7 @@ use gtk::{gdk::RGBA, TextTag};
pub fn new() -> TextTag {
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))
.build()
}