GTK non-buggy dark theme (gnome 3.12)

Any recommendation for a good dark theme? The builtin dark adwaita doesn't do anything for GTK2. I have tried some other themes, but they all have a bug of some sort. For example, I tried DeLorean-dark-3.10, but it hides my background (I assume it's because I use gnome 3.12).
I'm not very picky: if I don't like the theme's color, i'm willing to change it myself. I'd just like to find a non-buggy dark theme to start from. Suggestions?
-Morph
Last edited by morphheus (2014-08-01 22:05:06)

I compared some in this ol' thread: https://bbs.archlinux.org/viewtopic.php?id=157147
I ended up with a slightly customized copy+paste hybrid of flatstudio and equinox since then. If you take a look at both themes and play around with them a bit, you should be able to adjust them to fit your needs almost perfectly.
Last edited by whoops (2014-08-21 11:34:05)

Similar Messages

  • Gnome-system-monitor (dark remix) 4 those using dark themes

    hey fellow archers,
    I'm a guy who digs dark themes, i am also someone who uses Gnome. Something that has irritated me for years is gnome-system-monitor ~ specifically, when using a dark theme. those white graphs (CPU graph), are just brutal. At work, i use CentOS on a couple of machines, while i don't use gnome with a server (obviously..lol) i have usedf CentOS with gnome before and had made note of the fact that it had a dark graph, and no ugly highlight bar in the 'system' tab, which was a little bit nicer on the eyes.
    well, today i decided to fix the default colors for that graph, and i also decided to remove the stupid cairo-gradient that greets you in the 'system' tab. i did this because i prefer a nice graphic, over having a plain gnome logo, and a tacky gradient, it just doesn't need to be there.
    here is what it looks like;
    here is my gitorious branch where the sources are available;
    git clone git://gitorious.org/gnome-system-monitor-blackgtk3/gnome-system-monitor-blackgtk3.git
    you all use archlinux, so i need not explain how to compile it and this is gnome-system-monitor 3.1.4 (development) but i have not noticed any bugs whatsoever.
    I am thinking of making a pkgbuild for AUR, that would pull from Gnome's git repo, and then apply a patch. Currently i have 2 roughed out patches (that work), but i have no experience writing patches, or even making pkgbuilds. if you are interested here is what i have got;
    1. black-graph.patch
    --- /home/ninez/Desktop/gnome-system-monitor/src/load-graph.cpp 2011-08-18 19:58:21.443838034 -0400
    +++ /home/ninez/Desktop/gnome-system-monitor-3.1.4-NINEZ/src/load-graph.cpp 2011-08-18 19:50:24.000000000 -0400
    @@ -76,7 +76,7 @@
    cairo_text_extents_t extents;
    num_bars = graph->num_bars();
    - graph->graph_dely = (graph->draw_height - 15) / num_bars; /* round to int to avoid AA blur */
    + graph->graph_dely = (graph->draw_height - 8) / num_bars; /* round to int to avoid AA blur */
    graph->real_draw_height = graph->graph_dely * num_bars;
    graph->graph_delx = (graph->draw_width - 2.0 - graph->rmargin - graph->indent) / (LoadGraph::NUM_POINTS - 3);
    graph->graph_buffer_offset = (int) (1.5 * graph->graph_delx) + FRAME_WIDTH ;
    @@ -88,66 +88,67 @@
    allocation.height);
    cr = cairo_create (graph->background);
    - // set the background colour
    + // set the background colour - cairo_set_source_rgb = outside of graph
    GtkStyle *style = gtk_widget_get_style (ProcData::get_instance()->notebook);
    - gdk_cairo_set_source_color (cr, &style->bg[GTK_STATE_NORMAL]);
    + gdk_cairo_set_source_color (cr, &style->bg[0, 0, 1, 1]);
    + cairo_set_source_rgb (cr, 0.10, 0.10, 0.10);
    cairo_paint (cr);
    /* draw frame */
    cairo_translate (cr, FRAME_WIDTH, FRAME_WIDTH);
    - /* Draw background rectangle */
    - cairo_set_source_rgb (cr, 1.0, 1.0, 1.0);
    - cairo_rectangle (cr, graph->rmargin + graph->indent, 0,
    + /* Draw background rectangle - inside graph */
    + cairo_set_source_rgb (cr, 0.10, 0.10, 0.10);
    + cairo_rectangle (cr, graph->rmargin + graph->indent, 1,
    graph->draw_width - graph->rmargin - graph->indent, graph->real_draw_height);
    cairo_fill(cr);
    - cairo_set_line_width (cr, 1.0);
    - cairo_set_dash (cr, dash, 2, 0);
    + cairo_set_line_width (cr, 2.0);
    + cairo_set_dash (cr, dash, 2, 1);
    cairo_set_font_size (cr, graph->fontsize);
    for (i = 0; i <= num_bars; ++i) {
    double y;
    if (i == 0)
    - y = 0.5 + graph->fontsize / 2.0;
    + y = 0.5 + graph->fontsize / 3.0;
    else if (i == num_bars)
    y = i * graph->graph_dely + 0.5;
    else
    - y = i * graph->graph_dely + graph->fontsize / 2.0;
    + y = i * graph->graph_dely + graph->fontsize / 4.0;
    - gdk_cairo_set_source_color (cr, &style->fg[GTK_STATE_NORMAL]);
    + gdk_cairo_set_source_color (cr, &style->fg[1]);
    if (graph->type == LOAD_GRAPH_NET) {
    // operation orders matters so it's 0 if i == num_bars
    unsigned rate = graph->net.max - (i * graph->net.max / num_bars);
    const std::string caption(procman::format_network_rate(rate, graph->net.max));
    cairo_text_extents (cr, caption.c_str(), &extents);
    - cairo_move_to (cr, graph->indent - extents.width + 20, y);
    + cairo_move_to (cr, graph->indent - extents.width + 40, y);
    cairo_show_text (cr, caption.c_str());
    } else {
    // operation orders matters so it's 0 if i == num_bars
    caption = g_strdup_printf("%d %%", 100 - i * (100 / num_bars));
    cairo_text_extents (cr, caption, &extents);
    - cairo_move_to (cr, graph->indent - extents.width + 20, y);
    + cairo_move_to (cr, graph->indent - extents.width + 40, y);
    cairo_show_text (cr, caption);
    g_free (caption);
    - cairo_set_source_rgba (cr, 0, 0, 0, 0.75);
    + cairo_set_source_rgba (cr, 0.7, 0.7, 0.7, 0.70);
    cairo_move_to (cr, graph->rmargin + graph->indent - 3, i * graph->graph_dely + 0.5);
    cairo_line_to (cr, graph->draw_width - 0.5, i * graph->graph_dely + 0.5);
    cairo_stroke (cr);
    - cairo_set_dash (cr, dash, 2, 1.5);
    + cairo_set_dash (cr, dash, 2, 0.20);
    const unsigned total_seconds = graph->speed * (LoadGraph::NUM_POINTS - 2) / 1000;
    for (unsigned int i = 0; i < 7; i++) {
    double x = (i) * (graph->draw_width - graph->rmargin - graph->indent) / 6;
    - cairo_set_source_rgba (cr, 0, 0, 0, 0.75);
    - cairo_move_to (cr, (ceil(x) + 0.5) + graph->rmargin + graph->indent, 0.5);
    - cairo_line_to (cr, (ceil(x) + 0.5) + graph->rmargin + graph->indent, graph->real_draw_height + 4.5);
    + cairo_set_source_rgba (cr, 0.7, 0.7, 0.7, 0.75);
    + cairo_move_to (cr, (ceil(x) + 0.3) + graph->rmargin + graph->indent, 0.3);
    + cairo_line_to (cr, (ceil(x) + 0.3) + graph->rmargin + graph->indent, graph->real_draw_height + 4.5);
    cairo_stroke(cr);
    unsigned seconds = total_seconds - i * total_seconds / 6;
    const char* format;
    @@ -158,7 +159,7 @@
    caption = g_strdup_printf(format, seconds);
    cairo_text_extents (cr, caption, &extents);
    cairo_move_to (cr, ((ceil(x) + 0.5) + graph->rmargin + graph->indent) - (extents.width/2), graph->draw_height);
    - gdk_cairo_set_source_color (cr, &style->fg[GTK_STATE_NORMAL]);
    + gdk_cairo_set_source_color (cr, &style->fg[1]);
    cairo_show_text (cr, caption);
    g_free (caption);
    @@ -226,20 +227,20 @@
    /* Subframe offset */
    x_offset += graph->rmargin - ((sample_width / graph->frames_per_unit) * graph->render_counter);
    - /* draw the graph */
    + /* draw the graph - LINE WIDTH 3 */
    cairo_t* cr;
    cr = gdk_cairo_create (window);
    - cairo_set_line_width (cr, 1);
    + cairo_set_line_width (cr, 2);
    cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
    cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
    - cairo_rectangle (cr, graph->rmargin + graph->indent + FRAME_WIDTH + 1, FRAME_WIDTH - 1,
    + cairo_rectangle (cr, graph->rmargin + graph->indent + FRAME_WIDTH + 2, FRAME_WIDTH - 2,
    graph->draw_width - graph->rmargin - graph->indent - 1, graph->real_draw_height + FRAME_WIDTH - 1);
    cairo_clip(cr);
    for (j = 0; j < graph->n; ++j) {
    - cairo_move_to (cr, x_offset, (1.0f - graph->data[0][j]) * graph->real_draw_height);
    + cairo_move_to (cr, x_offset, (1.0f - graph->data[1][j]) * graph->real_draw_height);
    gdk_cairo_set_source_color (cr, &(graph->colors [j]));
    for (i = 1; i < LoadGraph::NUM_POINTS; ++i) {
    2. no-highlight.patch
    --- /home/ninez/Desktop/gnome-system-monitor/src/sysinfo.cpp 2011-08-18 19:58:21.443838034 -0400
    +++ /home/ninez/Desktop/gnome-system-monitor-3.1.4-NINEZ/src/sysinfo.cpp 2011-08-18 16:03:52.000000000 -0400
    @@ -477,7 +477,7 @@
    style->base[GTK_STATE_SELECTED].green / 65535.0,
    style->base[GTK_STATE_SELECTED].blue / 65535.0,
    1.0);
    - cairo_pattern_add_color_stop_rgba(cp, 1.0,
    + cairo_pattern_add_color_stop_rgba(cp, 0.0,
    style->base[GTK_STATE_SELECTED].red / 65535.0,
    style->base[GTK_STATE_SELECTED].green / 65535.0,
    style->base[GTK_STATE_SELECTED].blue / 65535.0,
    EDIT: if you noticed the RGBA transparency where the icons are, that isn't a bug or something being misdrawn. My gtk3 theme is partially RGBA (in compiz only, not gnome-shell/mutter). the theme is 'Marples-black' found here;
    http://gnome-look.org/content/show.php?content=144240
    last note: My branch is only for the short term, until i get things sorted out. i also wanted to make the sources available to anyone, on any distro. so , it was easist to just quickly setup a branch, that anyone can pull from.
    cheerz
    Last edited by triplesquarednine (2011-08-19 03:58:42)

    triplesquarednine wrote:
    dodo3773 wrote:Yeah, if it wasn't for dark themes / stylish I would probably be blind by now ha ha ha. Have you though about putting it in the aur? Maybe calling it gnome-system-monitor-dark or something?
    I spend way too much time both at work/home in front of a computer. dark is the way to go. so much more relaxed on the eyes.
    Yes, i have (thought about putting it into AUR).  in the short term it was just quicker to throw it up on my gitorious though. As i said above, i haven't really made too many patches, and i currently only maintain one package in AUR, so i have a little reading to do, first. that's also why i posted my patches. in case someone has something to point out, aside from the obvious thing - which is that i need to modify the first part of the patch, as i can ditch a 1st couple directories ...
    Ideally, it will end up in AUR...  But, i will probably also have my gitorious branch sync'd to gnome's branch, and i will create a patch using GIT to maintain my branch ~ so that people outside the Arch community, can have easy access too. plus, who knows, i may change around some other things as well. in the 3-4 hours i have been using this 'mod', i am way happier than with the upstream version.
    cheerz
    Right on. Looking forward to further development. I will stay posted  (subscribed to thread).

  • Dark Theme for Gnome?

    Hi,
    Can anyone recommend a dark theme for Gnome?
    MrG

    input {
    border: 2px inset white;
    background-color: black;
    color: white;
    textarea {
    border: 2px inset white;
    background-color: black;
    color: white;
    select {
    border: 2px inset white;
    background-color: black;
    color: white;
    input[type="radio"],
    input[type="checkbox"] {
    border: 2px inset white ! important;
    background-color: black ! important;
    color: ThreeDFace ! important;
    *|*::-moz-radio {
    background-color: black;
    button,
    input[type="reset"],
    input[type="button"],
    input[type="submit"] {
    border: 2px outset white;
    background-color: #eeeeee;
    color: white;
    body {
    background-color: white;
    color: black;
    display: block;
    margin: 8px;
    using Slickness black atm had to tweak userContent.css .... for firefox
    Wish I could figure out how to sweeten up Thunderbird
    MrG

  • Dark theme and Graphite aren't required together-

    Wow!
    I do like this new iteration… And, given that a lot of things have gone "flat," I thought I'd try the Dark Theme! I liked it immediately. But (silly me?) I thought I'd needed to choose the Graphite Theme, first. Then, I got a little confused: A splash of color (the Spotlight icon…in Red, Yellow and Green) always kept me oriented: I always knew which window was active, awaiting input.
    When I discovered my mistake, I thought I'd pass along my experience…

    I'm probably not the best person to ask about the relative merits of ThemeDreamer because I don't think I am technically competent enough to work out how to use it...
    ...but since you asked!
    For a person able to code in Wordpress, I imagine it might be more helpful.  I understand it has lots of code prompts for the PHP that WP uses and I guess for those that can code this will be useful.  I wasn't really able to get it going well enough and I'm a little uncertain still as to how to set it up.  I might be misunderstanding how to do that but you are probably streets ahead of me there.  As already said using my local testing server, Firefox and Firebug is a lot more intuitive and I think it will get me by.
    As far as any other observations regarding ThemeDreamer, here’s what I’ve got.
    1)     When you open index.php it renders in DW but only partially.  There still seems to be a whole heap of yellow php icons in the page.
    2)     To a non PHP coder it doesn’t help make sense of things
    3)     There isn’t much documentation although again, it might be more self explanatory to people with knowledge of PHP/WP.
    4)     There’s a reference in the properties panel that takes you to WP Codex for individual tags – which is probably better if you know what you are doing.
    5)     There are code hints on the WP tags that might be helpful if ever I’m brave enough to interfere with that sort of thing!
    6)     Overall, I think I’m saying it’s not much good for a novice or at least, not this one.
    I wish it was more helpful, I really do.
    Regards
    Martin

  • I want dark themes support in Firefox. Can someone help me to make it worked for me.

    as look http://postimage.org/image/mn9yzgt5x/full/ I have not found it same as chrome show me exact same as I got in non-high contrast theme.
    Firefox change the color that make it's hard to use in dark mode.
    any answer to get it worked for me.

    Maybe the NoSquint extension can do what you want.
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Looking for an openbox dark theme...

    Hi,
    I am looking for a dark theme for Openbox , something thats as dark as Khali-Blue
    Using DarkGraph atm but its kinda grey loooking
    TIA
    MrG

    Maybe you can find something that fits your needs at Hewphoria, Boxwhore or mulberry's site.
    If you fail to find something you may give gehtehkah or gehtehkah_tiny a try (both can be found at http://nooms.de/files/openbox/). They dynamically use the colors of your GTK+ theme. You need to patch Openbox for them to work or use openbox-svn from my repo which already has the gtkcolors patch applied.
    Here's an example of what it looks like with a dark GTK+ theme:

  • Adjust Arch forum text with dark theme

    I have written 2 greasemonkey scripts (these are usually helpful for people with dark themes):
    - One that changes the subject box and buttons to white text
    // ==UserScript==
    // @name Arch Linux Dark Text Fix
    // @description Displays dark text on an Arch Linux page.
    // @include http://bbs.archlinux.org/post.php*
    // @include http://bbs.archlinux.org/edit.php*
    // ==/UserScript==
    function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
    addGlobalStyle('input { color:white; }');
    - One that changes the message box to black text
    // ==UserScript==
    // @name Arch Linux Light Text Fix
    // @description Displays light text on an Arch Linux page.
    // @include http://bbs.archlinux.org/post.php*
    // @include http://bbs.archlinux.org/edit.php*
    // ==/UserScript==
    function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
    addGlobalStyle('textarea { color:black; }');
    Save those into a text file with a .user.js extension and import them into greasemonkey.
    Last edited by itsbrad212 (2010-07-02 03:49:00)

    toxygen wrote:can you show a screenshot of what it does (with and w/o the script preferably)?  currently i use a variant of tjw's dark script, and i'm not seeing issues...
    Well, a screenshot wouldn't be of use, because the text is a very dim white, and you wouldn't even be able to see it. Just imagine what it looks like
    But here it is anyway. If you look really closely you can see the text "This is white text".
    http://img35.imageshack.us/img35/3728/2 … 0x1080.png
    As for the dark text fix, you can look at this thread:
    http://bbs.archlinux.org/viewtopic.php?id=100296
    Last edited by itsbrad212 (2010-07-02 17:22:53)

  • HTML client dark theme loading

    If you use the dark theme, the header area shows white for a few seconds until the page is fully loaded. I was unable to find where to alter this in order to have the background dark while the screen loads. Anyone know how to do this?  Thanks.

    Hi,
    You can change the theme easily in the default.htm file.
    Change light-theme.css and msls-light.css to dark-theme.css and msls-dark.css respectively to use the dark theme.  Alternatively, you may replace light-theme.css with a custom jQuery Mobile theme.
    <link rel="stylesheet" type="text/css" href="Content/light-theme.css" />
    <link rel="stylesheet" type="text/css" href="Content/msls-light.css" />
    change above code to below:
    <link rel="stylesheet" type="text/css" href="Content/dark-theme.css" />
    <link rel="stylesheet" type="text/css" href="Content/msls-dark.css" />
     Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I just updated to the newest version of Firefox and now none of my themes work. It's just all white and very hard to see.

    I have windows XP, just updated to the newest version and not none of my themes work. It's just all white for my tabs and tool bar. Very hard to see. I've reinstalled the themes and nothing works.
    Any ideas?

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration

  • Gtk-recordmydesktop doesn't record gnome-shell top panel

    I want to record my whole desktop for a video . but gtk-recordmydesktop is not  recording  gnome-shell top panel for an unknown reason.(I have to use gtk-recordmydesktop because gnome-shell's inbuilt recording is very slow.) someone please help!

    PranavG wrote:I want to record my whole desktop for a video . but gtk-recordmydesktop is not  recording  gnome-shell top panel for an unknown reason.(I have to use gtk-recordmydesktop because gnome-shell's inbuilt recording is very slow.) someone please help!
    In gtk-recordMyDesktop, just disable 2 options in Advanced->misc tab
    Outline Capture Area On Screen [ ] #disable this
    Reset Capture Area [ ] #disable this
    thanks.

  • Where can i get a dark theme for itunes 11 mac

    where can i get a dark theme for itunes 11 mac

    If your phone is running iOS7  it requires iTunes 11 which in turn requires OS 10.6.8 or higher on the computer.  You will probably need to upgrade your operating system version.
    You can probably upgrade to Snow Leopard, but check system requirements first. Get more information about your computer. Go to the Apple in the upper left corner of any window, then  "About This Mac".  Write down what it says about "version"and report that here.  Now continue to "More Info..."  Copy and paste the information here, but omit the serial number and Hardware UUID (if present).  Compare with:
    Snow Leopard 10.6 Technical Requirements - http://support.apple.com/kb/SP575
    You can buy Snow Leopard at:
    Snow Leopard disc source - http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    After installing run the updater to 10.6.8, then upgrade iTunes.
    Jan. 2014 post by Kappy on doing all this: https://discussions.apple.com/message/24599931
    An iDevice can only sync with one library at a time.  If you attach it to a different library it will erase the content becfore syncing to that library.  Unless your business is music I probably wouldn't sync to a work owned computer.

  • IOS - Dark Theme, or a Night-Time Mode

    Hi,
    I'm new to the forums here, so please bear with me.
    I'm a long time Mac & iPhone user, but have been increasingly frustrated by the fact that Apple is not issuing a "Dark Theme" that is comparable to a night-time mode for iOS.
    The current iOS 7.1 is lovely to look at and use; it's so simple and elegant in its interface, but it is also exceedingly bright. There is a tremendous increase in the overall brightness of the interface, and at times it can be quite glaring in the eyes.
    Turning the phone on in a darkened environment (yes, there are practical times for doing this!) is like having a 200 W halogen lamp ignite the room.
    There is one feature that is in Settings that "inverts colours", but honestly it's completely ridiculous having it there as it mangles your wallpaper, turns all green icons orange, all blue ones red, etc etc, it's like looking at a negative film from an old camera. It doesn't look like iOS 7.1. It looks like someone has played around in Photoshop and decided to splash diametrically opposite colours on every single icon, picture and background.
    Rather than this completely impractical mangling of colours would it not be simpler to have a "night-mode" where all the whites of the backgrounds are converted to a dark colour, and the dark fonts turned to white?

    IlijasX wrote:
    I don't understand. The link up at the top says that I'm in the iPhone forum.
    Apple Support Communities >iPhone > Using iPhone > Discussions
    Someone requested that your post be moved and the Hosts moved it to the correct forum.
    As to why Apple doesn't include such a feature (one I've never noticed in other smart phones, either), only Apple would know.
    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • [SOLVED] GTK dark theme. firefox text entry box unreadable

    EDIT :: this is solved and discussed here http://bbs.archlinux.org/viewtopic.php?id=50409
    well i found that the "royalty" gtk theme is the perfect theme for me, but with it, the firefox text colors say in web forms, or right now writing this text in the forum, the text is plain black and the background is so dark that for read the text i need to select it with the mouse for it to be readable...
    here's an example... (the username it's leandro.chescotta)
    here's the gtkrc file:
    # Requires the gtk-xfce-engine.
    gtk-icon-sizes = "panel-menu=16,16:panel=16,16:gtk-button=16,16:gtk-large-toolbar=16,16"
    gtk-button-images = 0
    gtk-menu-images = 0
    style "default"
    GtkButton::default_border = {0, 0, 0, 0}
    GtkButton::default_outside_border = {0, 0, 0, 0}
    GtkButton::child_displacement_x = 0
    GtkButton::child_displacement_y = 1
    GtkButton::default_spacing = 2
    GtkButton::focus-padding = 0
    GtkCheckButton::indicator_size = 8
    GtkMenuBar::internal-padding = 1
    GtkMenuBar::shadow_type = none
    GtkHandleBox::shadow_type = none
    GtkMenuItem::selected_shadow_type = none
    GtkPaned::handle_full_size = 1
    GtkPaned::handle_size = 2
    GtkRadioButton::indicator_size = 10
    GtkRange::slider_width = 6
    GtkRange::stepper_size = 10
    GtkRange::stepper_spacing = 0
    GtkRange::trough_border = 0
    GtkScrollbar::has_forward_stepper = 0
    GtkScrollbar::has_backward_stepper = 0
    GtkScrollbar::has_secondary_backward_stepper = 0
    GtkScrollbar::min_slider_length = 10
    GtkToolbar::shadow_type = none
    GtkWidget::focus-line-width = 1
    GtkWidget::focus_padding = 1
    GtkWidget::interior_focus = 1
    GtkWidget::internal_padding = 1
    GtkEntry::cursor_aspect_ratio = 0.1
    GtkEntry::cursor_color = "#8F8F8F"
    GtkEntry::secondary_cursor_color = "#8F8F8F"
    GtkTextView::cursor_color = "#8F8F8F"
    GtkTextView::secondary_cursor_color = "#8F8F8F"
    xthickness = 1
    ythickness = 1
    base[NORMAL] = "#262626" # Background, most
    base[PRELIGHT] = "#222222" # Mouseover menu
    base[ACTIVE] = "#1e1e1e" # Menu active item in inactive window
    base[SELECTED] = "#1e1e1e" # Menu active item in active window
    base[INSENSITIVE] = "#404040" # Background, insensitive
    text[NORMAL] = "#ffffff" # Text in window
    text[PRELIGHT] = "#ffffff" # Text on Mouseover
    text[ACTIVE] = "#ffffff" # Active text in inactive window
    text[SELECTED] = "#ffffff" # Active text in active window
    text[INSENSITIVE] = "#FFFFFF" #8F8F8F" # Unknown
    bg[NORMAL] = "#373737" # Normal Background, inactive Metacity bar, buttons
    bg[PRELIGHT] = "#222222" # Mouseover buttons
    bg[ACTIVE] = "#1e1e1e" # Mouseclicking, Tabs, active window list
    bg[SELECTED] = "#222222" # Metacity Bar
    bg[INSENSITIVE] = "#222222" # Insensitive buttons
    fg[ACTIVE] = "#8F8F8F"
    fg[INSENSITIVE] = "#505050"
    fg[NORMAL] = "#8F8F8F"
    fg[PRELIGHT] = "#e0e0e0"
    fg[SELECTED] = "#8F8F8F"
    engine "xfce"
    smooth_edge = true
    boxfill
    fill_style = plain
    widget_class "*" style "default"
    style "menustyle" = "default"
    xthickness = 2
    ythickness = 0
    engine "xfce"
    smooth_edge = true
    grip_style = none
    boxfill
    fill_style = gradient
    orientation = vertical
    shade_start = 1.02
    shade_end = 1.00
    widget_class "*BonoboDockItem" style "menustyle"
    class "*BonoboDockItem" style "menustyle"
    widget_class "*ToolBar" style "menustyle"
    class "*ToolBar" style "menustyle"
    widget_class "*MenuBar" style "menustyle"
    class "*MenuBar" style "menustyle"
    class "GtkWidget" style "default"
    style "inactivetext"
    engine "mist"
    widget_class "*.<GtkLabel>" style "inactivetext"
    widget_class "*.<GtkCellLayout>" style "inactivetext"
    #widget_class "*.<Combo>" style "inactivetext"
    style "inactivetext2"
    fg[PRELIGHT] = "#B3B600"
    text[PRELIGHT] = "#B3B600"
    engine "mist"
    widget_class "*.<GtkMenuItem>.*" style "inactivetext2"
    style "button" = "default"
    xthickness = 2
    ythickness = 2
    engine "xfce"
    smooth_edge = true
    grip_style = none
    boxfill
    fill_style = gradient
    orientation = vertical
    shade_start = 1.05
    shade_end = 1.00
    widget_class "*Button*" style "button"
    class "*Button*" style "button"
    widget_class "*button*" style "button"
    class "*button*" style "button"
    widget_class "*OptionMenu*" style "button"
    class "*OptionMenu*" style "button"
    style "sbstyle" = "default"
    fg[PRELIGHT] = "#ffffff"
    bg[NORMAL] = "#262626"
    bg[PRELIGHT] = "#505050"
    xthickness = 2
    ythickness = 2
    engine "xfce"
    smooth_edge = true
    grip_style = none
    boxfill
    fill_style = gradient
    orientation = automatic
    shade_start = 1.0
    shade_end = 1.0
    widget_class "*Scrollbar*" style "sbstyle"
    class "*Scrollbar*" style "sbstyle"
    widget_class "*GtkScale*" style "sbstyle"
    class "*GtkScale*" style "sbstyle"
    widget_class "*GtkProgress*" style "sbstyle"
    class "*GtkProgress*" style "sbstyle"
    style "fsstyle"
    # fg[NORMAL] = "#8f8f8f"
    fg[ACTIVE] = "#e0e0e0"
    fg[SELECTED] = "#e0e0e0"
    widget_class "*List" style "fsstyle"
    class "*List" style "fsstyle"
    widget_class "*Button" style "fsstyle"
    class "*Button" style "fsstyle"
    widget_class "*Tree" style "fsstyle"
    class "*Tree" style "fsstyle"
    style "ledstyle"
    text[NORMAL] = "#ffffff"
    widget_class "*Clock*" style "ledstyle"
    class "*Clock*" style "ledstyle"
    style "menuitem" = "default"
    xthickness = 1
    ythickness = 2
    widget_class "*MenuItem*" style "menuitem"
    class "*MenuItem*" style "menuitem"
    style "flat" = "default"
    xthickness = 2
    ythickness = 2
    engine "xfce"
    smooth_edge = true
    grip_style = none
    boxfill
    fill_style = gradient
    orientation = vertical
    shade_start = 1.00
    shade_end = 1.00
    widget_class "*HandleBox*" style "flat"
    style "titlebar"
    bg[SELECTED] = "#262626"
    fg[SELECTED] = "#E0E0E0"
    fg[INSENSITIVE] = "#8F8F8F"
    widget "xfwm" style "titlebar"
    widget_class "MetaFrames" style "titlebar"
    class "MetaFrames" style "titlebar"
    Last edited by leo2501 (2008-12-07 15:37:27)

    tomk wrote:Try the fix included with this theme.
    Well this really helped PARTIALLY because in some places the problem get fixed but in other doesn't... for example this text i'm writing here...
    but it's perfect here...
    Last edited by leo2501 (2008-12-07 15:07:30)

  • Dark theme in Linux screws up Firefox 4.0, help with userContent.css file

    OS: Fedora 14 x86_64 / Gnome 2.3x
    Problem with: Firefox 4.0
    Using dark gtk themes changes the background color of common form controls (input boxes, text boxes, radio buttons, etc...) into the same dark color used in the theme, so you end up with dark controls with black text, which makes them unreadable.
    While searching I found that there's a way to make Firefox override the system colors, and that is by creating a userContent.cs file.
    Here's the userContent.css file:
    ===========================
    body {
    background-attachment: scroll !important;
    input {
    border: 2px inset white;
    background-color: white;
    color: black;
    -moz-appearance: none !important;
    textarea {
    border: 2px inset white;
    background-color: white;
    color: black;
    -moz-appearance: none !important;
    select {
    border: 2px inset white;
    background-color: white;
    color: black;
    -moz-appearance: none !important;
    input[type="radio"],
    input[type="checkbox"] {
    border: 2px inset white ! important;
    background-color: white ! important;
    color: ThreeDFace ! important;
    -moz-appearance: none !important;
    .*|*::-moz-radio {
    background-color: white;
    -moz-appearance: none !important;
    button,
    input[type="reset"],
    input[type="button"],
    input[type="submit"] {
    border: 2px outset white;
    background-color: #eeeeee;
    color: black;
    -moz-appearance: none !important;
    body {
    background-color: white;
    color: black;
    display: block;
    margin: 8px;
    -moz-appearance: none !important;
    ===========================
    This css code fixes text boxes, input boxes, etc... but I still have dark radio buttons, dark check boxes, and dark drop down menus, does anyone know what might be causing this problem?
    Examples:
    http://i901.photobucket.com/albums/ac211/0xGFX007/001.png
    http://i901.photobucket.com/albums/ac211/0xGFX007/002.png

    FWIW, an alternative to going back to a light theme for whatever reason: there is a theme with several variations called "Shiki-Colors", in which only half of the stuff is dark.

  • Dark theme

    Hi,
    I am looking for a dark gtk theme currently using LiNsta3 in gnome but gtk apps look a bit dull ....
    thanks

    Divinorum
    AuroraMidnight (Comes in the aurora AUR package)
    MurrinaBlack
    Cobra (Same author as Divinorum, multiple colours)
    GSM
    Neutronium-Gilouche
    Neutronium-DeepBlack
    Mire v2
    In my opinion these are the best of the current lot.  Which I'm using depends on the monitor.

Maybe you are looking for