@@ -302,15 +302,15 @@ COLORREF PhGetGroupAttributesColor(
302
302
if (Attributes & SE_GROUP_INTEGRITY )
303
303
{
304
304
if (Attributes & SE_GROUP_INTEGRITY_ENABLED )
305
- return RGB (0xff , 0xf0 , 0xc0 );
305
+ return RGB (0xe0 , 0xf0 , 0xe0 );
306
306
else
307
307
return GetSysColor (COLOR_WINDOW );
308
308
}
309
309
310
310
if (Attributes & SE_GROUP_ENABLED_BY_DEFAULT )
311
311
return RGB (0xc0 , 0xf0 , 0xc0 );
312
312
else if (Attributes & SE_GROUP_ENABLED )
313
- return RGB ( 0x00 , 0xff , 0x7f );
313
+ return GetSysColor ( COLOR_WINDOW );
314
314
else
315
315
return RGB (0xf0 , 0xe0 , 0xe0 );
316
316
}
@@ -322,7 +322,7 @@ COLORREF PhGetPrivilegeAttributesColor(
322
322
if (Attributes & SE_PRIVILEGE_ENABLED_BY_DEFAULT )
323
323
return RGB (0xc0 , 0xf0 , 0xc0 );
324
324
else if (Attributes & SE_PRIVILEGE_ENABLED )
325
- return RGB (0x00 , 0xff , 0x7f );
325
+ return RGB (0xe0 , 0xf0 , 0xe0 );
326
326
else
327
327
return RGB (0xf0 , 0xe0 , 0xe0 );
328
328
}
@@ -581,7 +581,7 @@ INT_PTR CALLBACK PhpTokenPageProc(
581
581
582
582
PhSetExtendedListView (tokenPageContext -> ListViewHandle );
583
583
ExtendedListView_SetItemColorFunction (tokenPageContext -> ListViewHandle , PhpTokenGroupColorFunction );
584
- PhLoadListViewColumnsFromSetting (L"TokenGroupsListViewColumns" , tokenPageContext -> ListViewHandle );
584
+ PhLoadListViewColumnsFromSetting (L"TokenGroupsListViewColumns" , tokenPageContext -> ListViewHandle );
585
585
586
586
ListView_EnableGroupView (tokenPageContext -> ListViewHandle , TRUE);
587
587
PhAddListViewGroup (tokenPageContext -> ListViewHandle , PH_PROCESS_TOKEN_CATEGORY_PRIVILEGES , L"Privileges" );
0 commit comments