Skip to content

Instantly share code, notes, and snippets.

@fluential
Last active May 11, 2017 13:24
Show Gist options
  • Save fluential/f61e0285450d4f4f6e6a5401376c91bc to your computer and use it in GitHub Desktop.
Save fluential/f61e0285450d4f4f6e6a5401376c91bc to your computer and use it in GitHub Desktop.
gnome-terminal-restyle
# This should go into ~/.config/gtk-3.0/gtk.css
@define-color bg-grey #222;
@define-color active-grey #333;
@define-color border-grey #555;
TerminalWindow .notebook {
border: 0;
padding: 0;
color: #eee;
background-color: shade(@active-grey, 1);
}
TerminalWindow .notebook tab:active {
border: 1px solid @border-grey;
background-color: shade(@active-grey, 1);
}
TerminalWindow .notebook tab {
background-color: shade(@bg-grey, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment