gtkrc.black: text too dark to read

Using applications, configuring, problems
Post Reply
Message
Author
User avatar
klhrevolutionist
Posts: 1121
Joined: Wed 08 Jun 2005, 10:09

gtkrc.black: text too dark to read

#1 Post by klhrevolutionist »

I am starting to use gtkrc.black
but the letters in anything are to dark. Can someone change the letter's to white. And leave everything the same ? Or tell me what to change to do it ?

# Black GTK+ Color theme
# By Stupkid (Bryan DeLuca, stupkid@supakewl.com)
# August 8th, 1999
# I wanted a nice and tight black GTK theme. So, here it is.
#
#

style "nothing" {
bg[NORMAL] = { 0.2, 0.2, 0.2 }
# for gtk2...
# font_name="Arial 12"
}

style "default"
{
font = "-adobe-helvetica-normal-r-normal--12-*-*-*-*-*-*-*"
bg[SELECTED] = { 0.2, 0.48, 0.70 }
fg[SELECTED] = { 0.99, 0.99, 0.99 }
bg[ACTIVE] = { 0.40, 0.40, 0.40 }
fg[ACTIVE] = { 0.2, 0.48, 0.70 }

bg[NORMAL] = { 0.2, 0.2, 0.2 }
bg[PRELIGHT] = { 0.60, 0.60 , 0.60 }
bg[INSENSITIVE] = { 0.2, 0.2, 0.2 }

fg[NORMAL] = { 0.60, 0.60, 0.60 }
base[NORMAL] = {0.2, 0.2, 0.2}
base[ACTIVE] = {0.2, 0.2, 0.2}
base[PRELIGHT] = {0.2, 0.2, 0.2}
base[INSENSITIVE]= {0.2, 0.2, 0.2}
# for gtk2...
# font_name="Arial 12"
}

style "entries" = "default"
{
fg[SELECTED] = { 0.99, 0.99, 0.99 }
bg[SELECTED] = { 0.60, 0.60, 0.60 }
fg[NORMAL] = { 0.60, 0.60, 0.60 }
# for gtk2...
# font_name="Arial 12"
}

style "bar" = "default"

{
fg[NORMAL] = { 0.60, 0.60, 0.60 }
bg[PRELIGHT] = { 0.2, 0.48, 0.70 }
fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
bg[SELECTED] = { 0.60, 0.60, 0.60 }
# for gtk2...
# font_name="Arial 12"
}


# 0.2, 0.38, 0.51


style "menu" = "default"
{

fg[NORMAL] = { 0.60, 0.60, 0.60 }
bg[PRELIGHT] = { 0.60, 0.60, 0.60 }
fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
bg[SELECTED] = { 0.60, 0.60, 0.60 }

# for gtk2...
# font_name="Arial 12"
}

style "tip" = "default"

{

bg[NORMAL] = { 0.2, 0.2, 0.2 }
bg[SELECTED] = { 0.60, 0.60, 0.60 }
bg[ACTIVE] = { 0.40, 0.40, 0.40 }
bg[PRELIGHT] = { 0.60, 0.60, 0.60 }
bg[INSENSITIVE] = { 0.2, 0.2, 0.2 }


# for gtk2...
# font_name="Arial 12"
}

# tried Tips
# tried tip
# tried Tip
# tried Tool
# tried Tooltip
# tried Tooltips
# tried ToolTip
# tried ToolTips
# tried TT
# tried Toolt
# tried ttip
# tried Tool_Tip
# Does anyone know the widget class for a tooltip?

widget_class "*" style "default"
widget_class "*Bar*" style "bar"
widget_class "*Menu*" style "menu"
widget_class "*Entry*" style "entries"
widget_class "*Loose*" style "nothing"
Last edited by klhrevolutionist on Thu 27 Oct 2005, 01:51, edited 2 times in total.
Heaven is on the way, until then let's get the truth out!

User avatar
MU
Posts: 13649
Joined: Wed 24 Aug 2005, 16:52
Location: Karlsruhe, Germany
Contact:

#2 Post by MU »

Do you mean the Letters in the textarea in leafpad?

I fear you cannot influence them by .gtkrc, as they are set by the programmer.

This is done, to allow different colors in a text (syntax-highlighting).

But you can set the background of Textareas (and also might modify the Lists), by adding these lines in the end:

Code: Select all

style "mine"
{
        base[NORMAL] = { 0.6, 0.6, 0.6 }
}

widget_class "*Text*" style "mine"

style "mylist"
{
        fg[NORMAL] = { 0.99, 0.99, 0.99 }
        base[NORMAL] = { 0.3, 0.3, 0.3 }
}

widget_class "*Gtk*List" style "mylist"

I can upload a Texteditor written in wxBasic (Tuxtexter), that supports several colors.
In the options you can set your own color for background and foreground.

But I must adapt it first for puppy, will take a moment.

Mark

User avatar
klhrevolutionist
Posts: 1121
Joined: Wed 08 Jun 2005, 10:09

I hear the train a comin'

#3 Post by klhrevolutionist »

I tried the tuxtexter, but am really stupid ?
Is there a way, for any theme just to tint the text areas a little darker and leave the text white ?
I should ask BK as he might know, he changes the text on some of
his scripts. But they are that ugly yellow, but if he knows then I can change
the text coloring to something darker but readable.
Heaven is on the way, until then let's get the truth out!

User avatar
BarryK
Puppy Master
Posts: 9392
Joined: Mon 09 May 2005, 09:23
Location: Perth, Western Australia
Contact:

#4 Post by BarryK »

gtkrc.black has been removed, not in 1.0.6rc.

Post Reply