mirror of
https://github.com/atom/atom.git
synced 2026-01-25 23:08:18 -05:00
@@ -124,6 +124,7 @@ requireStylesheet 'fuzzy-finder.css'
|
||||
requireStylesheet 'overlay.css'
|
||||
requireStylesheet 'popover-list.css'
|
||||
requireStylesheet 'notification.css'
|
||||
requireStylesheet 'markdown.css'
|
||||
|
||||
if nativeStylesheetPath = require.resolve("#{platform}.css")
|
||||
requireStylesheet(nativeStylesheetPath)
|
||||
|
||||
@@ -62,6 +62,7 @@
|
||||
}
|
||||
{
|
||||
'match': '\\!?\\[([^\\]]*)\\]\\(([^\\)]+)\\)'
|
||||
'name': 'link'
|
||||
'captures':
|
||||
'1': 'name': 'entity.gfm'
|
||||
'2': 'name': 'markup.underline.gfm'
|
||||
|
||||
15
static/markdown.css
Normal file
15
static/markdown.css
Normal file
@@ -0,0 +1,15 @@
|
||||
.source.gfm {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.gfm .markup.heading {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.gfm .bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.gfm .italic {
|
||||
font-style: italic;
|
||||
}
|
||||
19
themes/atom-dark-ui/markdown.css
Normal file
19
themes/atom-dark-ui/markdown.css
Normal file
@@ -0,0 +1,19 @@
|
||||
.source.gfm {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.gfm .markup.heading {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
.gfm .link {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.gfm .variable.list {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.gfm .link .entity {
|
||||
color: #ddd;
|
||||
}
|
||||
@@ -8,4 +8,5 @@
|
||||
'command-panel.css'
|
||||
'command-logger.css'
|
||||
'blurred.css'
|
||||
'markdown.css'
|
||||
]
|
||||
|
||||
15
themes/atom-light-ui/markdown.css
Normal file
15
themes/atom-light-ui/markdown.css
Normal file
@@ -0,0 +1,15 @@
|
||||
.source.gfm {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.gfm .markup.heading {
|
||||
color: #111;
|
||||
}
|
||||
|
||||
.gfm .link {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.gfm .variable.list {
|
||||
color: #888;
|
||||
}
|
||||
@@ -8,4 +8,5 @@
|
||||
'command-panel.css'
|
||||
'command-logger.css'
|
||||
'blurred.css'
|
||||
'markdown.css'
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user