subhasutra@lemmy.world to Firefox Customs@fedia.io · 4 months agoChanging the blue border colour for pinned sites in home/new tab pagemessage-squaremessage-square2fedilinkarrow-up15arrow-down10file-text
arrow-up15arrow-down1message-squareChanging the blue border colour for pinned sites in home/new tab pagesubhasutra@lemmy.world to Firefox Customs@fedia.io · 4 months agomessage-square2fedilinkfile-text
minus-squareMrOtherGuy@lemmy.worldMlinkfedilinkarrow-up2·4 months agoYou can change it like this with userContent.css: @-moz-document url("about:newtab"), url("about:home"){ :root{ --newtab-primary-action-background: #f00 !important; } } That way you can specify a color for them, but setting the value to AccentColor may or may not resolve to the actual system accent color.
You can change it like this with userContent.css:
@-moz-document url("about:newtab"), url("about:home"){ :root{ --newtab-primary-action-background: #f00 !important; } }
That way you can specify a color for them, but setting the value to
AccentColor
may or may not resolve to the actual system accent color.Thank you, it worked.