colorsatom-editorappearance

How can I change the gutter's background colors in atom


How can I change these background colors?


Solution

  • I found the solution. You should edit these less attributes in styles.less (usually in the file ~/.atom/styles.less)

    atom-text-editor::shadow .gutter {
        background-color: #282828;
    }
    atom-text-editor::shadow .gutter .line-number {
        background-color: #282828;
    }
    

    I hope someone it will be useful