Skip to content

Instantly share code, notes, and snippets.

@pabluk
Created May 19, 2016 23:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pabluk/c286eb61d56b2ba9247388958434e702 to your computer and use it in GitHub Desktop.
Save pabluk/c286eb61d56b2ba9247388958434e702 to your computer and use it in GitHub Desktop.
Gnome Terminal CSS
/* ~/.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: 0;
padding: 0;
/*font-size: smaller;*/
background-color: shade(@active-grey, 1);
}
TerminalWindow .notebook tab {
border: 0;
padding: 0;
/*font-size: smaller;*/
background-color: shade(@bg-grey, 1);
}
/*
TerminalWindow .notebook .button {
border: 4;
padding: 4;
}
TerminalWindow .notebook .toogle {
border: 0;
padding: 0;
background-color: shade(@bg-grey, 1);
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment