change current tag decoration colors

This commit is contained in:
yggverse 2024-12-16 14:40:25 +02:00
parent 2a5d0a508b
commit 5240aa1879

View File

@ -2,6 +2,7 @@ use gtk::{gdk::RGBA, TextTag};
pub fn new() -> TextTag {
TextTag::builder()
.background_rgba(&RGBA::new(0.502, 0.502, 0.502, 0.5)) // @TODO
.background_rgba(&RGBA::new(0.0, 0.0, 0.0, 1.0))
.foreground_rgba(&RGBA::new(1.0, 1.0, 1.0, 1.0))
.build()
}