1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

Actual icon color is #FFCC00, not #FC0

This commit is contained in:
Raymond Hill 2023-03-18 12:27:40 -04:00
parent 8bef11a871
commit bb462e6e5d
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -822,7 +822,7 @@ if ( webext.browserAction instanceof Object ) {
});
browserAction.setBadgeText({ text });
browserAction.setBadgeBackgroundColor({
color: text === '!' ? '#FC0' : '#666'
color: text === '!' ? '#FFCC00' : '#666'
});
};
}