Skip to content

Instantly share code, notes, and snippets.

@ben-bradley
Created April 15, 2016 19:30
Show Gist options
  • Save ben-bradley/79281fcbefadcb191761d4ed8e886719 to your computer and use it in GitHub Desktop.
Save ben-bradley/79281fcbefadcb191761d4ed8e886719 to your computer and use it in GitHub Desktop.
control atom theme colors in tree-view (dirs & files)
@dark-text: #777;
@light-text: lightgray;
.tree-view {
.status-ignored {
.header {
&::before {
color: @light-text !important;
}
}
.name {
color: @light-text !important;
&::before {
color: @light-text !important;
}
}
}
.header:not(.status-ignored) {
&::before {
color: @dark-text;
}
}
.name:not(.status-ignored) {
color: @dark-text;
&::before {
color: @dark-text;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment