We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0315f6f commit 34ec9a9Copy full SHA for 34ec9a9
.github/workflows/ci.yml
@@ -28,3 +28,5 @@ jobs:
28
run: npm run test
29
- name: Typecheck
30
run: npm run typecheck
31
+ - name: Build
32
+ run: npm run build
src/scss/_note.scss
@@ -29,11 +29,14 @@
}
+
33
+ // @todo replace with variables
34
35
$colors: (
- yfm-accent-info: var(--yfm-color-accent),
- yfm-accent-tip: var(--yfm-color-note-tip),
- yfm-accent-alert: var(--yfm-color-note-important),
36
- yfm-accent-warning: var(--yfm-color-note-warning),
+ yfm-accent-info: #027bf3,
37
+ yfm-accent-tip: #56bd67,
38
+ yfm-accent-warning: #f19518,
39
+ yfm-accent-alert: #ff4645,
40
);
41
42
@each $type, $color in $colors {
0 commit comments