What changed, and why it matters
This commit only changes the color contrast of alternating chunks of displayed Bitcoin addresses in the wallet's user interface. It makes some address segments slightly less visually distinct from surrounding text. There is no security-relevant change.
No security action needed. Treat as a normal UI accessibility/aesthetic change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch adjusts JavaFX CSS -fx-fill color derivation percentages for .address-chunk.alternate classes in both dark and general themes. The values move closer to the base text color (e.g., -35% to -25% in dark theme, 70% to 60% in general theme), reducing contrast. No code logic, validation, cryptography, or network behavior is modified.
Changed components
src/main/resources/com/sparrowwallet/sparrow/darktheme.csssrc/main/resources/com/sparrowwallet/sparrow/general.cssInspect captured patch +4 / −4
diff --git a/src/main/resources/com/sparrowwallet/sparrow/darktheme.css b/src/main/resources/com/sparrowwallet/sparrow/darktheme.css
index 9ed4d8b..41ea3fd 100644
--- a/src/main/resources/com/sparrowwallet/sparrow/darktheme.css
+++ b/src/main/resources/com/sparrowwallet/sparrow/darktheme.css
@@ -391,9 +391,9 @@ HorizontalHeaderColumn > TableColumnHeader.column-header.table-column{
.root.chunk-addresses .text-field .address-chunk.alternate,
.root.chunk-addresses .label .address-chunk.alternate,
.root.chunk-addresses .tree-table-view:focused .address-chunk.alternate {
- -fx-fill: derive(-fx-text-inner-color, -35%);
+ -fx-fill: derive(-fx-text-inner-color, -25%);
}
.root.chunk-addresses .tree-table-view .tree-table-row-cell:selected .address-chunk.alternate {
- -fx-fill: derive(-fx-selection-bar-text, -35%);
+ -fx-fill: derive(-fx-selection-bar-text, -20%);
}
diff --git a/src/main/resources/com/sparrowwallet/sparrow/general.css b/src/main/resources/com/sparrowwallet/sparrow/general.css
index 6e16efe..9ed9c01 100644
--- a/src/main/resources/com/sparrowwallet/sparrow/general.css
+++ b/src/main/resources/com/sparrowwallet/sparrow/general.css
@@ -353,7 +353,7 @@ CellView > .text-input.text-field {
.chunk-addresses .text-field .address-chunk.alternate,
.chunk-addresses .label .address-chunk.alternate,
.chunk-addresses .tree-table-view:focused .address-chunk.alternate {
- -fx-fill: derive(-fx-text-inner-color, 70%);
+ -fx-fill: derive(-fx-text-inner-color, 60%);
}
.chunk-addresses .tooltip .address-chunk.alternate {
@@ -365,5 +365,5 @@ CellView > .text-input.text-field {
}
.chunk-addresses .tree-table-view .tree-table-row-cell:selected .address-chunk.alternate {
- -fx-fill: derive(-fx-selection-bar-text, 60%);
+ -fx-fill: derive(-fx-selection-bar-text, 50%);
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.