From 208b7ce5ea2f3b07cfa2f0cf472c0c0612b7164e Mon Sep 17 00:00:00 2001 From: sivanova Date: Fri, 28 Nov 2025 10:20:13 +0200 Subject: [PATCH] refactor(grid): bootstrap color enhancement --- .../src/lib/core/styles/components/grid/_grid-theme.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss b/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss index 32c02fb828f..995e98f542d 100644 --- a/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss +++ b/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss @@ -1006,10 +1006,10 @@ } %igx-icon--error { - @if $variant == 'fluent' and $theme-variant == 'light' or $variant == 'material' and $theme-variant == 'light' { - color: color($color: 'gray', $variant: 600); - } @else { + @if $variant == 'indigo' or $theme-variant == 'dark' { color: color($color: 'gray', $variant: 500); + } @else { + color: color($color: 'gray', $variant: 600); } } }