atom-material / atom-material-syntax-dark

A darker syntax theme for Atom that uses Google's Material Design color palette
MIT License
57 stars 25 forks source link

Can't customize using Atom's styles.less #5

Closed octoxan closed 7 years ago

octoxan commented 8 years ago

Can't customize using Atom's styles.less

Atom version: 1.11.0-beta4 OS and version: Windows 10

Is this normal?

dyc3 commented 7 years ago

IIRC, this is true for all styles.

silvestreh commented 7 years ago

You should be able to customize without issues with something like…

atom-text-editor {
    .syntax--js {
        &.syntax--operator {
            color: red;
        }
    }
}