Use the diff status colors defined in the theme (#3569)
This PR updates the diff status colors to use the ones defined in the theme instead of placeholder colors. Release Notes: - N/A
This commit is contained in:
parent
60e4311294
commit
cf42d95af6
1 changed files with 3 additions and 3 deletions
|
@ -824,8 +824,8 @@ impl EditorElement {
|
|||
};
|
||||
|
||||
let color = match status {
|
||||
DiffHunkStatus::Added => gpui::green(), // todo!("use the appropriate color")
|
||||
DiffHunkStatus::Modified => gpui::yellow(), // todo!("use the appropriate color")
|
||||
DiffHunkStatus::Added => cx.theme().status().created,
|
||||
DiffHunkStatus::Modified => cx.theme().status().modified,
|
||||
|
||||
//TODO: This rendering is entirely a horrible hack
|
||||
DiffHunkStatus::Removed => {
|
||||
|
@ -842,7 +842,7 @@ impl EditorElement {
|
|||
cx.paint_quad(
|
||||
highlight_bounds,
|
||||
Corners::all(1. * line_height),
|
||||
gpui::red(), // todo!("use the right color")
|
||||
cx.theme().status().deleted,
|
||||
Edges::default(),
|
||||
transparent_black(),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue