Module ThemeScopes.TokenStyle

type t = {
foreground : string option;
background : string option;
bold : bool option;
italic : bool option;
}
val show : t -> string
val create : ?⁠foreground:string option -> ?⁠background:string option -> ?⁠bold:bool option -> ?⁠italic:bool option -> unit -> t
val default : t