gradient_tui_fork 0.19.0

this is a fork, please use the official repo
Documentation
1
2
3
4
5
6
7
8
9
use crate::style::Color;

#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct BorderGradients {
    pub top: Option<Vec<Color>>,
    pub left: Option<Vec<Color>>,
    pub right: Option<Vec<Color>>,
    pub bottom: Option<Vec<Color>>,
}