mirror of
https://github.com/atom/atom.git
synced 2026-02-10 14:45:11 -05:00
31 lines
341 B
Plaintext
31 lines
341 B
Plaintext
.syntax--markup {
|
|
|
|
&.syntax--bold {
|
|
font-weight: bold;
|
|
}
|
|
&.syntax--italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
&.syntax--heading {
|
|
color: @blue;
|
|
}
|
|
|
|
&.syntax--link {
|
|
color: @cyan;
|
|
}
|
|
|
|
&.syntax--deleted {
|
|
color: @red;
|
|
}
|
|
|
|
&.syntax--changed {
|
|
color: @yellow;
|
|
}
|
|
|
|
&.syntax--inserted {
|
|
color: @cyan;
|
|
}
|
|
|
|
}
|