Revert "ui: Color cleanup (#26673)" (#26681)

This reverts commit 6767e98e00.

Somehow that PR automerged itself even with failed CI checks.

Release Notes:

- N/A
This commit is contained in:
Nate Butler 2025-03-13 11:40:57 -04:00 committed by GitHub
parent 87cdb68cca
commit b75964a636
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 161 additions and 139 deletions

View file

@ -11,7 +11,7 @@ use gpui::{
use language::language_settings::{all_language_settings, EditPredictionProvider};
use settings::{Settings, SettingsStore};
use std::sync::Arc;
use ui::{prelude::*, CheckboxWithLabel, Elevation, Tooltip};
use ui::{prelude::*, CheckboxWithLabel, ElevationIndex, Tooltip};
use vim_mode_setting::VimModeSetting;
use workspace::{
dock::DockPosition,
@ -289,7 +289,7 @@ impl Render for WelcomePage {
}),
)
.fill()
.elevation(Elevation::ElevatedSurface),
.elevation(ElevationIndex::ElevatedSurface),
)
.child(
IconButton::new("vim-mode", IconName::Info)
@ -325,7 +325,7 @@ impl Render for WelcomePage {
}),
)
.fill()
.elevation(Elevation::ElevatedSurface),
.elevation(ElevationIndex::ElevatedSurface),
)
.child(
CheckboxWithLabel::new(
@ -351,7 +351,7 @@ impl Render for WelcomePage {
}),
)
.fill()
.elevation(Elevation::ElevatedSurface),
.elevation(ElevationIndex::ElevatedSurface),
),
),
)