Skip to content

Instantly share code, notes, and snippets.

@nabam
Created September 14, 2017 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nabam/efcd7e3aaf649a88082a516de5027e89 to your computer and use it in GitHub Desktop.
Save nabam/efcd7e3aaf649a88082a516de5027e89 to your computer and use it in GitHub Desktop.
Dark tabs in terminator
.terminator-terminal-window .notebook tab {
background-color: #222;
padding: 0.2em;
border: 0;
border-color: #444;
border-style: solid;
border-width: 1px;
}
.terminator-terminal-window .notebook tab:active {
background-color: #000;
}
.terminator-terminal-window .notebook tab .label {
color: #ddd;
}
.terminator-terminal-window .notebook tab .active-page .label {
color: #76C802;
font-weight: 500;
}
.terminator-terminal-window .notebook tab .button {
padding: 0;
background-color: transparent;
color: #ccc;
}
.terminator-terminal-window .notebook.header {
background-color: #444;
}
.terminator-terminal-window .notebook tab .button:hover {
background-image: linear-gradient(to bottom, #000);
border: 0;
border-color: #444;
border-style: solid;
border-width: 1px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment