Change URL bar and Search bar font color Topic is solved

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
User avatar
amymor
Apollo supporter
Apollo supporter
Posts: 46
Joined: 2019-09-02, 14:19

Change URL bar and Search bar font color

Unread post by amymor » 2021-09-15, 17:19

Hello
Can I change the font color of URL bar and Search bar with userChrome.css?
I'm using a dark lightwaight Theme but URL bar and search bar is white with black font. I changed background color to black with userChrome.css but idk how to change font color to white. Any help?
Thanks

New Tobin Paradigm

Re: Change URL bar and Search bar font color

Unread post by New Tobin Paradigm » 2021-09-15, 17:28

DOMi.

User avatar
jars_
Lunatic
Lunatic
Posts: 398
Joined: 2016-12-27, 00:12

Re: Change URL bar and Search bar font color

Unread post by jars_ » 2021-09-15, 18:14

Code: Select all

#urlbar {
	color: #F2F2F2 !important;
	background-color: #565656 !important;
	border: 1px solid #383838 !important;
	font-family: "Segoe UI","Franklin Gothic",Verdana !important;
	font-size: 1.1em !important;
	font-weight: 600 !important;
	text-shadow: 2px 1px 2px #000 !important;
	}

/* selection in urlbar */
#urlbar ::-moz-selection {
	color: #EEE !important;
	background-color: #0070FF !important;
/*	text-shadow: 2px 1px 2px #0060FF !important;*/
	}



User avatar
amymor
Apollo supporter
Apollo supporter
Posts: 46
Joined: 2019-09-02, 14:19

Re: Change URL bar and Search bar font color

Unread post by amymor » 2021-09-15, 19:01

jars_ wrote:
2021-09-15, 18:14

Code: Select all

#urlbar {
	color: #F2F2F2 !important;
	background-color: #565656 !important;
	border: 1px solid #383838 !important;
	font-family: "Segoe UI","Franklin Gothic",Verdana !important;
	font-size: 1.1em !important;
	font-weight: 600 !important;
	text-shadow: 2px 1px 2px #000 !important;
	}

/* selection in urlbar */
#urlbar ::-moz-selection {
	color: #EEE !important;
	background-color: #0070FF !important;
/*	text-shadow: 2px 1px 2px #0060FF !important;*/
	}


Thank you :D

New Tobin Paradigm

Re: Change URL bar and Search bar font color

Unread post by New Tobin Paradigm » 2021-09-15, 19:44

Should really be using the additional selectors for lwthemes.. But whatever.

Locked