Page 2 of 6

Re: /usr/share/themes/

Posted: Mon Sep 23, 2013 12:24 pm
by dkeg
True that :D

Re: /usr/share/themes/

Posted: Mon Sep 23, 2013 8:55 pm
by ivanovnegro
Fantastic, fantastic.

Re: /usr/share/themes/

Posted: Mon Oct 07, 2013 4:56 am
by dkeg
I made another iteration of the Numix theme, this time a NumixDarker. Here's all in one file; Numix, NumixDark, NumixDarker, and NumixBrown

https://www.dropbox.com/s/3yaxi63tizlzvnk/NumixVariety

download, extract, place into ~/.themes

Re: /usr/share/themes/

Posted: Mon Oct 07, 2013 5:41 am
by machinebacon
Nice, dkeg. Thanks. Subtle changes, me likey.

Re: /usr/share/themes/

Posted: Mon Oct 07, 2013 9:49 am
by GekkoP
Thanks dkeg. I'm using Numix default at the moment, but I'll try your work asap.

Re: /usr/share/themes/

Posted: Mon Oct 07, 2013 1:10 pm
by dkeg
right on, thanks guys!

Re: /usr/share/themes/

Posted: Mon Oct 07, 2013 1:42 pm
by GekkoP
Ok, using your NumixDark at the moment. Really good one.

Re: /usr/share/themes/

Posted: Mon Oct 07, 2013 2:34 pm
by wuxmedia
nice, loving the Numixdarker, perfect!

Re: /usr/share/themes/

Posted: Wed Oct 30, 2013 4:31 pm
by GekkoP
Using NumixBrown on my Elektra-dwm setup. The only thing that doesn't work for me is Firefox/Iceweasel forms. Sometimes I just can't read the text I'm typing in. It is probably due to how the website is coded since everything's fine on startpage.com for instance, where the text field is dark but the text can be read without troubles.

Re: /usr/share/themes/

Posted: Wed Oct 30, 2013 4:58 pm
by GekkoP
Nailed it. Just added this to .themes/NumixBrown/gtk-2.0/gtkrc:

Code: Select all

style "ff" {
text[NORMAL] = "#000"
base[NORMAL] = "#FFF"
}
class "GtkInvisible" style "ff"
widget "GtkInvisible" style "ff"

style "fff" {
text[NORMAL] = "#000"
base[NORMAL] = "#FFF"
}
class "GtkEntry" style "fff"
widget "GtkEntry" style "fff"

style "custom" {
GtkWidget::cursor-color = "#000"
GtkWidget::secondary-cursor-color = "#FF0000"
}
widget_class "*" style "custom"

Re: /usr/share/themes/

Posted: Wed Oct 30, 2013 5:19 pm
by dkeg
good fix. I haven't run into that. Using iceweasel, roaster, chromium. Are other's running into this? I would be happy to update the gkkrc's and repackage with GekkoP's addition

Re: /usr/share/themes/

Posted: Wed Oct 30, 2013 5:22 pm
by GekkoP
I only ran into this on TweetDeck (iceweasel) and linuxbbq.org/start.html (roaster) tbh.

Re: /usr/share/themes/

Posted: Wed Oct 30, 2013 5:23 pm
by dkeg
ah, okay, right on

Re: /usr/share/themes/

Posted: Wed Oct 30, 2013 5:26 pm
by GekkoP
That's why I thought could be related to the code on some websites. It's working well with everything else I use (sylpheed, pcmanfm, etc.).

Re: /usr/share/themes/

Posted: Thu Oct 31, 2013 6:42 am
by machinebacon
I had exactly this problem with input fields at #! when I used FlatStudioDark. Anyway thanks for the fix, this is great.

Re: /usr/share/themes/

Posted: Wed Nov 06, 2013 5:53 pm
by RandomCharacter
I installed the Numix themes easily, but it was a little harder to find the Numix icons. The Numix developer (he responded to my question on Google +) told me how to find them in the Ubuntu ppa. Luckily, I did not have to configure the ppa, they are available there as a simple download.

My biggest complaint with Numix is the sliding scrollbars. To my eye, they are almost invisible in all but the standard Numix color scheme. Maybe that is the intent. And it is not highly visible even in the standard color scheme. Otherwise, I would like to use dkeg's Brown scheme.

Thanks,
Tim

Re: /usr/share/themes/

Posted: Wed Nov 06, 2013 6:00 pm
by dkeg
I could agree with you there Tim. But hasn't really bothered me overly too much. It holds the main color until moused on. I'll take a look through the gtkrc later and see if I am able to alter the defaults for that. If successful, I'll post up a fix.

Re: /usr/share/themes/

Posted: Wed Nov 06, 2013 6:19 pm
by dkeg
I'm at work, but was just looking through the gtkrc and think I see the fix. If I have time later, I'll post it up


Thanks.

Re: /usr/share/themes/

Posted: Wed Nov 06, 2013 8:17 pm
by RandomCharacter
Thanks, dkeg. On my system, I can barely see a difference when I mouse over a slider.

Tim

Re: /usr/share/themes/

Posted: Thu Nov 07, 2013 1:53 am
by machinebacon
The file in question: /usr/share/themes/Numix/gtk-2.0/gtkrc

Code: Select all

ChromeGtkFrame::scrollbar-slider-prelight-color
ChromeGtkFrame::scrollbar-slider-normal-color
I guess these two values are the ones to be changed. Prelight is when the mouse gets over it, normal is when it is untouched. They are now set to 80% and 90% density of the background color, so changing the values to, for example, 0.4 and 0.5 might make a difference.

Also, "colorize_scrollbar" is now set to "FALSE", which means it uses the background color. Changing it to "TRUE" will make them red (or whatever color the main color is)

This is for gtk-2.0 only, the gtk3 theme needs to be changed accordingly in ../gtk-3.0/gtk-widgets.css, as they are required for gtk3-apps.

Code: Select all

.scrollbar.slider {
    border-width: 1px;   
    border-color: shade(@theme_bg_color, 0.8);
    border-radius: 0;
    background-color: shade(@theme_bg_color, 0.9);
}
Same here, 80% and 90%, change as wished.