8000 Regenerate GitHub CSS · tyhallcsu/github-markdown-css@1363826 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1363826

Browse files
committed
Regenerate GitHub CSS
1 parent f45eec9 commit 1363826

File tree

4 files changed

+196
-1
lines changed

4 files changed

+196
-1
lines changed

github-markdown-dark.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,34 @@
368368
appearance: none;
369369
}
370370

371+
.markdown-body .color-fg-accent {
372+
color: #2f81f7 !important;
373+
}
374+
375+
.markdown-body .color-fg-attention {
376+
color: #d29922 !important;
377+
}
378+
379+
.markdown-body .color-fg-done {
380+
color: #a371f7 !important;
381+
}
382+
383+
.markdown-body .flex-items-center {
384+
align-items: center !important;
385+
}
386+
387+
.markdown-body .mb-1 {
388+
margin-bottom: var(--base-size-4, 4px) !important;
389+
}
390+
391+
.markdown-body .text-semibold {
392+
font-weight: var(--base-text-weight-medium, 500) !important;
393+
}
394+
395+
.markdown-body .d-inline-flex {
396+
display: inline-flex !important;
397+
}
398+
371399
.markdown-body::before {
372400
display: table;
373401
content: "";
@@ -1010,6 +1038,41 @@
10101038
clip: auto;
10111039
}
10121040

1041+
.markdown-body .QueryBuilder .qb-entity {
1042+
color: #d2a8ff;
1043+
}
1044+
1045+
.markdown-body .QueryBuilder .qb-constant {
1046+
color: #79c0ff;
1047+
}
1048+
10131049
.markdown-body ::-webkit-calendar-picker-indicator {
10141050
filter: invert(50%);
10151051
}
1052+
1053+
.markdown-body .markdown-alert {
1054+
padding: 0 1em;
1055+
margin-bottom: 16px;
1056+
color: inherit;
1057+
border-left: .25em solid #30363d;
1058+
}
1059+
1060+
.markdown-body .markdown-alert>:first-child {
1061+
margin-top: 0;
1062+
}
1063+
1064+
.markdown-body .markdown-alert>:last-child {
1065+
margin-bottom: 0;
1066+
}
1067+
1068+
.markdown-body .markdown-alert.markdown-alert-note {
1069+
border-left-color: #2f81f7;
1070+
}
1071+
1072+
.markdown-body .markdown-alert.markdown-alert-important {
1073+
border-left-color: #a371f7;
1074+
}
1075+
1076+
.markdown-body .markdown-alert.markdown-alert-warning {
1077+
border-left-color: #d29922;
1078+
}

github-markdown-light.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,34 @@
367367
appearance: none;
368368
}
369369

370+
.markdown-body .color-fg-accent {
371+
color: #0969da !important;
372+
}
373+
628C 374+
.markdown-body .color-fg-attention {
375+
color: #9a6700 !important;
376+
}
377+
378+
.markdown-body .color-fg-done {
379+
color: #8250df !important;
380+
}
381+
382+
.markdown-body .flex-items-center {
383+
align-items: center !important;
384+
}
385+
386+
.markdown-body .mb-1 {
387+
margin-bottom: var(--base-size-4, 4px) !important;
388+
}
389+
390+
.markdown-body .text-semibold {
391 A93C +
font-weight: var(--base-text-weight-medium, 500) !important;
392+
}
393+
394+
.markdown-body .d-inline-flex {
395+
display: inline-flex !important;
396+
}
397+
370398
.markdown-body::before {
371399
display: table;
372400
content: "";
@@ -1009,6 +1037,41 @@
10091037
clip: auto;
10101038
}
10111039

1040+
.markdown-body .QueryBuilder .qb-entity {
1041+
color: #6639ba;
1042+
}
1043+
1044+
.markdown-body .QueryBuilder .qb-constant {
1045+
color: #0550ae;
1046+
}
1047+
10121048
.markdown-body ::-webkit-calendar-picker-indicator {
10131049
filter: invert(50%);
10141050
}
1051+
1052+
.markdown-body .markdown-alert {
1053+
padding: 0 1em;
1054+
margin-bottom: 16px;
1055+
color: inherit;
1056+
border-left: .25em solid #d0d7de;
1057+
}
1058+
1059+
.markdown-body .markdown-alert>:first-child {
1060+
margin-top: 0;
1061+
}
1062+
1063+
.markdown-body .markdown-alert>:last-child {
1064+
margin-bottom: 0;
1065+
}
1066+
1067+
.markdown-body .markdown-alert.markdown-alert-note {
1068+
border-left-color: #0969da;
1069+
}
1070+
1071+
.markdown-body .markdown-alert.markdown-alert-important {
1072+
border-left-color: #8250df;
1073+
}
1074+
1075+
.markdown-body .markdown-alert.markdown-alert-warning {
1076+
border-left-color: #9a6700;
1077+
}

github-markdown.css

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@
4343
--color-neutral-muted: rgba(110,118,129,0.4);
4444
--color-accent-fg: #2f81f7;
4545
--color-accent-emphasis: #1f6feb;
46+
--color-attention-fg: #d29922;
4647
--color-attention-subtle: rgba(187,128,9,0.15);
4748
--color-danger-fg: #f85149;
49+
--color-done-fg: #a371f7;
4850
}
4951
}
5052

@@ -93,8 +95,10 @@
9395
--color-neutral-muted: rgba(175,184,193,0.2);
9496
--color-accent-fg: #0969da;
9597
--color-accent-emphasis: #0969da;
98+
--color-attention-fg: #9a6700;
9699
--color-attention-subtle: #fff8c5;
97100
--color-danger-fg: #d1242f;
101+
--color-done-fg: #8250df;
98102
--color-prettylights-syntax-comment: #6e7781;
99103
--color-prettylights-syntax-constant: #0550ae;
100104
--color-prettylights-syntax-entity: #6639ba;
@@ -135,8 +139,10 @@
135139
--color-neutral-muted: rgba(175,184,193,0.2);
136140
--color-accent-fg: #0969da;
137141
--color-accent-emphasis: #0969da;
142+
--color-attention-fg: #9a6700;
138143
--color-attention-subtle: #fff8c5;
139144
--color-danger-fg: #d1242f;
145+
--color-done-fg: #8250df;
140146
}
141147
}
142148

@@ -507,6 +513,34 @@
507513
appearance: none;
508514
}
509515

516+
.markdown-body .color-fg-accent {
517+
color: var(--color-accent-fg) !important;
518+
}
519+
520+
.markdown-body .color-fg-attention {
521+
color: var(--color-attention-fg) !important;
522+
}
523+
524+
.markdown-body .color-fg-done {
525+
color: var(--color-done-fg) !important;
526+
}
527+
528+
.markdown-body .flex-items-center {
529+
align-items: center !important;
530+
}
531+
532+
.markdown-body .mb-1 {
533+
margin-bottom: var(--base-size-4, 4px) !important;
534+
}
535+
536+
.markdown-body .text-semibold {
537+
font-weight: var(--base-text-weight-medium, 500) !important;
538+
}
539+
540+
.markdown-body .d-inline-flex {
541+
display: inline-flex !important;
542+
}
543+
510544
.markdown-body::before {
511545
display: table;
512546
content: "";
@@ -1149,6 +1183,41 @@
11491183
clip: auto;
11501184
}
11511185

1186+
.markdown-body .QueryBuilder .qb-entity {
1187+
color: var(--color-prettylights-syntax-entity);
1188+
}
1189+
1190+
.markdown-body .QueryBuilder .qb-constant {
1191+
color: var(--color-prettylights-syntax-constant);
1192+
}
1193+
11521194
.markdown-body ::-webkit-calendar-picker-indicator {
11531195
filter: invert(50%);
11541196
}
1197+
1198+
.markdown-body .markdown-alert {
1199+
padding: 0 1em;
1200+
margin-bottom: 16px;
1201+
color: inherit;
1202+
border-left: .25em solid var(--color-border-default);
1203+
}
1204+
1205+
.markdown-body .markdown-alert>:first-child {
1206+
margin-top: 0;
1207+
}
1208+
1209+
.markdown-body .markdown-alert>:last-child {
1210+
margin-bottom: 0;
1211+
}
1212+
1213+
.markdown-body .markdown-alert.markdown-alert-note {
1214+
border-left-color: var(--color-accent-fg);
1215+
}
1216+
1217+
.markdown-body .markdown-alert.markdown-alert-important {
1218+
border-left-color: var(--color-done-fg);
1219+
}
1220+
1221+
.markdown-body .markdown-alert.markdown-alert-warning {
1222+
border-left-color: var(--color-attention-fg);
1223+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
"stylesheet"
3636
],
3737
"devDependencies": {
38-
"generate-github-markdown-css": "^6.0.1"
38+
"generate-github-markdown-css": "^6.1.0"
3939
}
4040
}

0 commit comments

Comments
 (0)
0