@@ -16,9 +16,9 @@ import CheckCircleIcon from '@patternfly/react-icons/dist/js/icons/check-circle-
1616import ExclamationCircleIcon from '@patternfly/react-icons/dist/js/icons/exclamation-circle-icon' ;
1717import ExclamationTriangleIcon from '@patternfly/react-icons/dist/js/icons/exclamation-triangle-icon' ;
1818import TimesCircleIcon from '@patternfly/react-icons/dist/js/icons/times-circle-icon' ;
19- import global_success_color_100 from '@patternfly/react-tokens/dist/esm/global_success_color_100 ' ;
20- import global_warning_color_100 from '@patternfly/react-tokens/dist/esm/global_warning_color_100 ' ;
21- import global_danger_color_100 from '@patternfly/react-tokens/dist/esm/global_danger_color_100 ' ;
19+ import global_color_status_success_default from '@patternfly/react-tokens/dist/esm/global_color_status_success_default ' ;
20+ import global_color_status_warning_default from '@patternfly/react-tokens/dist/esm/global_color_status_warning_default ' ;
21+ import global_color_status_danger_default from '@patternfly/react-tokens/dist/esm/global_color_status_danger_default ' ;
2222import l_gallery_GridTemplateColumns_min from '@patternfly/react-tokens/dist/esm/l_gallery_GridTemplateColumns_min' ;
2323
2424interface ContentType {
@@ -46,7 +46,7 @@ const cardData: CardData = {
4646 title : '5 Clusters' ,
4747 content : [
4848 {
49- icon : < CheckCircleIcon color = { global_success_color_100 . var } />
49+ icon : < CheckCircleIcon color = { global_color_status_success_default . var } />
5050 }
5151 ] ,
5252 layout : 'icon'
@@ -55,7 +55,7 @@ const cardData: CardData = {
5555 title : '15 Clusters' ,
5656 content : [
5757 {
58- icon : < ExclamationTriangleIcon color = { global_warning_color_100 . var } />
58+ icon : < ExclamationTriangleIcon color = { global_color_status_warning_default . var } />
5959 }
6060 ] ,
6161 layout : 'icon'
@@ -64,7 +64,7 @@ const cardData: CardData = {
6464 title : '3 Clusters' ,
6565 content : [
6666 {
67- icon : < TimesCircleIcon color = { global_danger_color_100 . var } />
67+ icon : < TimesCircleIcon color = { global_color_status_danger_default . var } />
6868 }
6969 ] ,
7070 layout : 'icon'
@@ -75,11 +75,11 @@ const cardData: CardData = {
7575 title : '10 Hosts' ,
7676 content : [
7777 {
78- icon : < ExclamationCircleIcon color = { global_success_color_100 . var } /> ,
78+ icon : < ExclamationCircleIcon color = { global_color_status_success_default . var } /> ,
7979 count : 2
8080 } ,
8181 {
82- icon : < ExclamationTriangleIcon color = { global_warning_color_100 . var } /> ,
82+ icon : < ExclamationTriangleIcon color = { global_color_status_warning_default . var } /> ,
8383 count : 1
8484 }
8585 ] ,
@@ -89,11 +89,11 @@ const cardData: CardData = {
8989 title : '50 Hosts' ,
9090 content : [
9191 {
92- icon : < CheckCircleIcon color = { global_success_color_100 . var } /> ,
92+ icon : < CheckCircleIcon color = { global_color_status_success_default . var } /> ,
9393 count : 5
9494 } ,
9595 {
96- icon : < TimesCircleIcon color = { global_danger_color_100 . var } /> ,
96+ icon : < TimesCircleIcon color = { global_color_status_danger_default . var } /> ,
9797 count : 12
9898 }
9999 ] ,
@@ -103,11 +103,11 @@ const cardData: CardData = {
103103 title : '12 Hosts' ,
104104 content : [
105105 {
106- icon : < ExclamationTriangleIcon color = { global_warning_color_100 . var } /> ,
106+ icon : < ExclamationTriangleIcon color = { global_color_status_warning_default . var } /> ,
107107 count : 3
108108 } ,
109109 {
110- icon : < TimesCircleIcon color = { global_danger_color_100 . var } /> ,
110+ icon : < TimesCircleIcon color = { global_color_status_danger_default . var } /> ,
111111 count : 7
112112 }
113113 ] ,
@@ -119,12 +119,12 @@ const cardData: CardData = {
119119 title : '13 Hosts' ,
120120 content : [
121121 {
122- icon : < TimesCircleIcon color = { global_danger_color_100 . var } /> ,
122+ icon : < TimesCircleIcon color = { global_color_status_danger_default . var } /> ,
123123 status : '2 errors' ,
124124 subtitle : 'subtitle'
125125 } ,
126126 {
127- icon : < ExclamationTriangleIcon color = { global_warning_color_100 . var } /> ,
127+ icon : < ExclamationTriangleIcon color = { global_color_status_warning_default . var } /> ,
128128 status : '1 warning' ,
129129 subtitle : 'subtitle'
130130 }
@@ -135,12 +135,12 @@ const cardData: CardData = {
135135 title : '3 Hosts' ,
136136 content : [
137137 {
138- icon : < CheckCircleIcon color = { global_success_color_100 . var } /> ,
138+ icon : < CheckCircleIcon color = { global_color_status_success_default . var } /> ,
139139 status : '2 successes' ,
140140 subtitle : 'subtitle'
141141 } ,
142142 {
143- icon : < ExclamationTriangleIcon color = { global_warning_color_100 . var } /> ,
143+ icon : < ExclamationTriangleIcon color = { global_color_status_warning_default . var } /> ,
144144 status : '3 warnings' ,
145145 subtitle : 'subtitle'
146146 }
@@ -151,12 +151,12 @@ const cardData: CardData = {
151151 title : '50 Hosts' ,
152152 content : [
153153 {
154- icon : < ExclamationTriangleIcon color = { global_warning_color_100 . var } /> ,
154+ icon : < ExclamationTriangleIcon color = { global_color_status_warning_default . var } /> ,
155155 status : '7 warnings' ,
156156 subtitle : 'subtitle'
157157 } ,
158158 {
159- icon : < TimesCircleIcon color = { global_danger_color_100 . var } /> ,
159+ icon : < TimesCircleIcon color = { global_color_status_danger_default . var } /> ,
160160 status : '1 error' ,
161161 subtitle : 'subtitle'
162162 }
0 commit comments