Skip to content

Instantly share code, notes, and snippets.

@RicherMans
Created June 28, 2016 03:44
Show Gist options
  • Select an option

  • Save RicherMans/754d144b15556fd6f5fa269240ea0fa5 to your computer and use it in GitHub Desktop.

Select an option

Save RicherMans/754d144b15556fd6f5fa269240ea0fa5 to your computer and use it in GitHub Desktop.
Custom file for gnome-terminal
/* gnome-terminal */
@define-color term-win-bg #262626;
@define-color term-tab-inactive-bg #333333;
@define-color term-tab-active-bg #424242;
@define-color ubuntu-orange #fb9267;
TerminalScreen {
-TerminalScreen-background-darkness: 0.95;
background-color: @term-win-bg;
}
TerminalWindow .notebook {
border: 0;
padding: 0;
border-width: 0;
}
TerminalWindow .notebook tab {
border: 0;
border-radius: 0px;
border-image: -gtk-gradient (linear, left top, left bottom,
from (alpha (shade (@term-win-bg, 0.9), 0.0)),
to (shade (@term-win-bg, 0.9))) 1;
border-image-width: 0 1px;
border-color: transparent;
border-width: 0;
box-shadow: none;
background-color: shade(@term-tab-inactive-bg, 1);
}
TerminalWindow .notebook tab:active {
padding: 0;
border: 1px ;
border-image: none;
border-radius: 1px;
background-color: shade(@term-tab-active-bg, 1);
}
TerminalTabLabel.active-page .label {
/*color: @bg_color;
font-weight: bold
color: @ubuntu-orange; */
font-weight: bold;
color: @ubuntu-orange;
/* color: cyan; */
}
TerminalWindow .notebook .button,
TerminalWindow .notebook .button:active {
padding: 2 2 2 10;
background-image: none;
border: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment