Last active
April 11, 2016 13:42
-
-
Save z81/904871579776b14be70ec6c52cabac20 to your computer and use it in GitHub Desktop.
atom tab highlisghts
This file contains 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
.tab-bar { | |
.tab { | |
.title[data-name$=".js"], | |
.title[data-name$=".coffee"], | |
.title[data-name$=".jsx"], | |
.title[data-name$=".elm"], | |
.title[data-name$=".ts"] | |
{ | |
border-top: 2px solid rgba(139, 195, 74, 1); | |
} | |
.title[data-name$=".html"], | |
.title[data-name$=".htm"], | |
.title[data-name$=".jade"] | |
{ | |
border-top: 2px solid rgba(139, 195, 74, 1); | |
} | |
.title[data-name$=".json"], | |
.title[data-name$=".yaml"], | |
.title[data-name$=".ini"], | |
.title[data-name$="config.js"] | |
{ | |
border-top: 2px solid #607D8B; | |
} | |
.title[data-name$=".less"], | |
.title[data-name$=".css"], | |
.title[data-name$=".sass"], | |
.title[data-name$=".sccs"], | |
.title[data-name$=".styl"] { | |
border-top: 2px solid rgba(139, 74, 195, 1); | |
} | |
.title[data-path*="dist"], | |
.title[data-path*="bundle.js"] | |
{ | |
border-left: 2px solid rgba(180, 180, 180, 1); | |
color: #aaa; | |
} | |
.title[data-path*="src"] { | |
border-left: 2px solid rgba(139, 195, 154, 1); | |
color: #aaa; | |
} | |
.title[data-path*="server"] { | |
border-left: 2px solid #00BCD4; | |
color: #aaa; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment