useconsole::Style;/// Holds styling for additions and deletions for the Dracula theme.
pubstructTheme{pubaddition: Style,
pubdeletion: Style,
}implTheme{/// Returns the default Dracula theme.
pubfndracula()->Self{
Theme {
addition:Style::new().on_color256(10).black(),// Bright green bg, black text
deletion:Style::new().on_color256(9).black(),// Bright red bg, black text
}}}