zed/crates/title_bar/src
Danilo Leal 115aa43354
Adjust TintColor color token terminology (#22826)
Previously, to use a green and red shade with `TintColor` you'd need to
pass `Positive` and `Negative`, respectively. This terminology always
tripped me up, because, for example, I'd often try to use something
like:

```
Button::new("icon_color", "Negative")
      style(ButtonStyle::Tinted(TintColor::Negative))
      .color(Color::Error)
      .icon_color(Color::Error)
      .icon(IconName::Trash),
)
```

...and due to `icon_color` taking `Color::Error`, I'd always get
`TintColor` wrong at a first try, because I would, out of muscle memory,
write `TintColor::Error`, which wouldn't compile. That's exactly the
change in this PR—`TintColor` now takes `Success` and `Error` instead of
`Positive` and `Negative`, for more consistency.


Release Notes:

- N/A
2025-01-08 14:40:48 +00:00
..
platforms
stories
application_menu.rs linux: Add keyboard shortcuts for menus (#22074) 2025-01-03 18:19:24 +00:00
collab.rs Adjust TintColor color token terminology (#22826) 2025-01-08 14:40:48 +00:00
platforms.rs
stories.rs
title_bar.rs Move git status out of Entry (#22224) 2025-01-04 01:00:16 +00:00
window_controls.rs