Files
atom/docs/user-stylesheet.md
Nathan Sobo 2427d80e1e 💄
2013-02-13 16:25:08 -07:00

15 lines
423 B
Markdown

# User Stylesheet
If you want to apply quick-and-dirty personal styling changes without creating
an entire theme that you intend to distribute, you can add styles to
`user.css` in your `~/.atom` directory.
For example to change the color of the highlighted line number for the line that
contains the cursor, you could add the following style to `user.css`:
```css
.editor .line-number.cursor-line {
color: pink;
}
```