Created
June 28, 2016 03:44
-
-
Save RicherMans/754d144b15556fd6f5fa269240ea0fa5 to your computer and use it in GitHub Desktop.
Custom file for gnome-terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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