How to Change Color of Menu Font Within a Theme.[SOLVED] • GIMP Chat

It is currently Thu Jun 06, 2024 10:58 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 30 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 2:36 pm  (#1) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
GIMP Version: 2.8.14
Operating System: Windows
OS Version: 8.1
GIMP Experience: Experienced User

List any relevant plug-ins or scripts:
N/A

List any ERROR messages you received:
N/A



Maybe someone can help me out here?
The color of all the menu fonts within this theme are very light and hard to read.
Image

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Last edited by Wallace on Mon Jun 08, 2015 5:51 pm, edited 2 times in total.

Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 3:33 pm  (#2) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
Wallace can you attach the gtkrc?
I not sure but it might have something to do with your system theme.

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 3:40 pm  (#3) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Odinbc wrote:
Wallace can you attach the gtkrc?
I not sure but it might have something to do with your system theme.

Okay, here's the theme file.
Attachment:
Aurora-Midnight.zip [2.65 KiB]
Downloaded 188 times

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 4:02 pm  (#4) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
There seems to be some missing values in the gtkrc. I've noticed a few that might need attention so it will take a bit of time to sort through the file.

For a quick test open the gtkrc in a text editor.
Around line 19 you'll see the following code.
gtk_color_scheme = "fg_color:#D4D4D4\nbg_color:#333333\nbase_color:#474747\ntext_color:#D4D4D4\nselected_bg_color:#0081DE\nselected_fg_color:#ffffff"

Change fg_color:#D4D4D4 to fg_color:#ff0000,
gtk_color_scheme = "fg_color:#ff0000\nbg_color:#333333\nbase_color:#474747\ntext_color:#D4D4D4\nselected_bg_color:#0081DE\nselected_fg_color:#ffffff"

Save the file and restart Gimp.
You should have red lettering somewhere, let me know where.
This is only a test, hopefully with progress.

BTW, your theme works fine on my Linux machine.

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 4:42 pm  (#5) 
Offline
Script Coder
User avatar

Joined: Jun 22, 2010
Posts: 1171
Location: Here and there
Find the "theme-menu-item" section and add an fg[NORMAL] entry:

style "theme-menu-item" = "theme-wider"
{
  fg[PRELIGHT]     =  @selected_fg_color
  text[PRELIGHT] =  @selected_fg_color
  fg[NORMAL] = "green" 
}


Kevin

However, note that the theme expects to have the "aurora" theme engine installed, which is why the menubar is a light colour.


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 4:48 pm  (#6) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
paynekj wrote:

However, note that the theme expects to have the "aurora" theme engine installed, which is why the menubar is a light colour.

Wallace has Window 8 is the "aurora" theme engine an option?

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 5:13 pm  (#7) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Odinbc wrote:
paynekj wrote:

However, note that the theme expects to have the "aurora" theme engine installed, which is why the menubar is a light colour.

Wallace has Window 8 is the "aurora" theme engine an option?

I think so, I'll need to check that and I'll get beck to you guys.
Maybe this will solve the issue.

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 5:33 pm  (#8) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
I didn't have an Aurora theme, so I downloaded "Aurora Borealis", installed and used it.
It doesn't seem to mater what theme I use for my machine. The Gimp theme I'm currently using still remains the same as before.

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme?
PostPosted: Mon Jun 08, 2015 5:49 pm  (#9) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Odinbc wrote:
There seems to be some missing values in the gtkrc. I've noticed a few that might need attention so it will take a bit of time to sort through the file.

For a quick test open the gtkrc in a text editor.
Around line 19 you'll see the following code.
gtk_color_scheme = "fg_color:#D4D4D4\nbg_color:#333333\nbase_color:#474747\ntext_color:#D4D4D4\nselected_bg_color:#0081DE\nselected_fg_color:#ffffff"

Change fg_color:#D4D4D4 to fg_color:#ff0000,
gtk_color_scheme = "fg_color:#ff0000\nbg_color:#333333\nbase_color:#474747\ntext_color:#D4D4D4\nselected_bg_color:#0081DE\nselected_fg_color:#ffffff"

Save the file and restart Gimp.
You should have red lettering somewhere, let me know where.
This is only a test, hopefully with progress.

BTW, your theme works fine on my Linux machine.

I used the code you showed me as reference and changed the color to #0062dc, which is much better then before. Look...
Image
Thanks you guys for the help! :jumpclap

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 6:18 pm  (#10) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
Cool :bigthup
It looks like you chose a medium dark blue, give this one a go. It's a slight variation (from the Solarized palette), good for UI.
#268bd2

Image

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 6:45 pm  (#11) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Odinbc wrote:
Cool :bigthup
It looks like you chose a medium dark blue, give this one a go. It's a slight variation (from the Solarized palette), good for UI.
#268bd2

[ Image ]

I tried the color you suggested, but I don't notice much of a difference.

COLOR #268bd2
Image

COLOR #0081de
Image

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Last edited by Wallace on Mon Jun 08, 2015 6:46 pm, edited 1 time in total.

Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 6:46 pm  (#12) 
Offline
GimpChat Member
User avatar

Joined: Jun 08, 2015
Posts: 10
Location: Ponyville
Hi, I'm really new to gimp and I need help. I accidentally closed the color options...or window..or whatever it's called.. and I don't know how to open it again. (I'm posting on this because I don't know how to open a conversation thingy. I'm not on the internet much.)


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 6:50 pm  (#13) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Pinkie Pie wrote:
Hi, I'm really new to gimp and I need help. I accidentally closed the color options...or window..or whatever it's called.. and I don't know how to open it again. (I'm posting on this because I don't know how to open a conversation thingy. I'm not on the internet much.)

Hi Pinke Pie!

We'll need a little more information about what it was that you actually did. Can you provide us with that?

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 6:54 pm  (#14) 
Offline
GimpChat Member
User avatar

Joined: Jun 08, 2015
Posts: 10
Location: Ponyville
um... probably not (I closed it months ago). Is there a way to just reset the whole program?


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 7:03 pm  (#15) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Pinkie Pie wrote:
um... probably not (I closed it months ago). Is there a way to just reset the whole program?

Open your Gimp and go to Edit > Preferences....
Image
Note: Once the Preferences dialog opens, make sure to select Environment!

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Last edited by Wallace on Mon Jun 08, 2015 7:11 pm, edited 1 time in total.

Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 7:09 pm  (#16) 
Offline
GimpChat Member
User avatar

Joined: Jun 08, 2015
Posts: 10
Location: Ponyville
Thanks!


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 7:12 pm  (#17) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Pinkie Pie wrote:
Thanks!

:bigthup
I hope that this works for you. Will you let us know now it goes?

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 7:17 pm  (#18) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
Wallace wrote:
I tried the color you suggested, but I don't notice much of a difference.

The advantage is it works with both light and dark text.

BTW, Here's what your theme looks like on Linux.
Image

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 7:32 pm  (#19) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13055
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Odinbc wrote:
Wallace wrote:
I tried the color you suggested, but I don't notice much of a difference.

The advantage is it works with both light and dark text.

BTW, Here's what your theme looks like on Linux.
Image

I would like it to look this way on my machine. I don't understand why it doesn't.

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: How to Change Color of Menu Font Within a Theme.[SOLVED]
PostPosted: Mon Jun 08, 2015 8:59 pm  (#20) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
There must be a way to make GTK themes work better on Windows.
I'm pretty sure your issue is connected with Windows system. Play with your Personalize properties.

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
Post new topic Reply to topic  [ 30 posts ]  Go to page 1, 2  Next

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts How do I change context menu text color in my theme?

0

No new posts Attachment(s) Background color chanage and typed text color change

8

No new posts Change foreground and background color

2

No new posts Attachment(s) Font In Status Bar Not Loading Correctly (on top of other font issues)

4

No new posts Attachment(s) GEGL Color Light Fusion (12 blend modes for color overlay)

9



* Login  



Powered by phpBB3 © phpBB Group