Files
atom/docs/styling.md
Justin Palmer 4350be62c6 💀 is-focused.
targeting blurred state instead so normal state styles don't need a
special prefix
2013-02-04 16:02:09 -08:00

25 lines
510 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 .line.cursor-line,
.editor .line-number.cursor-line {
background-color: green;
}
```
You can change the line number foreground color using the following CSS:
```css
.editor .line-number.cursor-line {
color: blue;
}
```