tree_table/types/highlight.rs
1use crate::Color3;
2
3#[cfg_attr(feature = "tsify", derive(tsify::Tsify))]
4#[cfg_attr(feature = "tsify", tsify(from_wasm_abi))]
5#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
6#[derive(Debug, Clone, PartialEq)]
7pub struct Highlight {
8 pub bg: Option<Color3>,
9 pub fg: Option<Color3>,
10}