How to change gnome theme title to black

Update:

I tried changing the top line in the gtkrc2.0 file to this gtk-color-scheme = "base_color:#000000\nfg_color:#000000\ntooltip_fg_color:#000000\nselected_bg_color:#000000\nselected_fg_color:#000000\ntext_color:#000000\nbg_color:#000000\ntooltip_bg_color:#000000" , but that didn't help either.

I do some tricks on my desktop (Ubuntu 14.04 with Gnome-shell 3.9.90) and I want my title to be black. By the title bar, I mean that you double-click to maximize the window or drag it. Now it is gray (Adwaita).

I cannot determine which css file to change or which field to change in the gnome configuration tool.

Ideally, I could just add a few overrides to a .gtkrc-2.0 or .gtkrc-3.0 file, because in the end it's just gVim, Firefox, and the Gnome terminal, which I would like to change to the header color.

Any help would swing!

Here is my .gtkrc-2.0

style "vimfix" {
  bg[NORMAL] = "#000000" # this matches my vim theme 'Normal' bg color.
}
widget "vim-main-window.*GtkForm" style "vimfix"

gVim. gVim.

Update: ~/.themes/Adwaita-borderless/metacity-1/metacity-theme-3.xml "Adwaita-bordeless" gnome-tweak, , - :

<draw_ops name="titlebar_fill_focused">
  <gradient type="vertical" x="0" y="0" width="width" height="height">
    <color value="#000000" />
    <color value="#000000" />
  </gradient>
</draw_ops>

<draw_ops name="titlebar_fill_unfocused">
  <rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" />
  <rectangle color="#000000" x="0" y="0" width="width" height="height" filled="true" />
</draw_ops>
+4
1

:

sudo gedit/usr/share/themes/Adwaita/metacity-1/metacity-theme-3.xml

:

name= "titlebar_fill_focused"

name= "titlebar_fill_unfocused"

( Fedora)

+4

Source: https://habr.com/ru/post/1542256/


All Articles