Files
atom/docs/styling.md
2012-11-02 12:16:03 -06:00

25 lines
534 B
Markdown

## Styling Tweaks
### Cursor Line Highlighting
Atom highlights the background color of the entire line where the cursor
currently is and also changes the foreground color of the line number in the
gutter.
You can change the background color using the following CSS:
```css
.editor.focused .line.cursor-line,
.editor.focused .line-number.cursor-line {
background-color: green;
}
```
You can change the line number foreground color using the following CSS:
```css
.editor.focused .line-number.cursor-line {
color: blue;
}
```