File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,27 +2,27 @@ import chalk from 'chalk';
2
2
3
3
import { blockTag } from '../tag-helpers/block-tag.js' ;
4
4
5
- export const h1 = blockTag ( ( value ) => chalk . blue . bold ( ` # ${ value } ` ) , {
5
+ export const h1 = blockTag ( ( value ) => chalk . red . bold ( `# ${ value } ` ) , {
6
6
marginTop : 2 ,
7
7
marginBottom : 1 ,
8
8
} ) ;
9
- export const h2 = blockTag ( ( value ) => chalk . blue . bold ( ` ## ${ value } ` ) , {
9
+ export const h2 = blockTag ( ( value ) => chalk . blue . bold ( `## ${ value } ` ) , {
10
10
marginTop : 1 ,
11
11
marginBottom : 1 ,
12
12
} ) ;
13
- export const h3 = blockTag ( ( value ) => chalk . blue . bold ( ` ### ${ value } ` ) , {
13
+ export const h3 = blockTag ( ( value ) => chalk . blue . bold ( `### ${ value } ` ) , {
14
14
marginTop : 1 ,
15
15
marginBottom : 1 ,
16
16
} ) ;
17
- export const h4 = blockTag ( ( value ) => chalk . cyan . bold ( ` #### ${ value } ` ) , {
17
+ export const h4 = blockTag ( ( value ) => chalk . cyan . bold ( `#### ${ value } ` ) , {
18
18
marginTop : 1 ,
19
19
marginBottom : 1 ,
20
20
} ) ;
21
- export const h5 = blockTag ( ( value ) => chalk . cyan ( ` ##### ${ value } ` ) , {
21
+ export const h5 = blockTag ( ( value ) => chalk . cyan ( `##### ${ value } ` ) , {
22
22
marginTop : 1 ,
23
23
marginBottom : 1 ,
24
24
} ) ;
25
- export const h6 = blockTag ( ( value ) => chalk . cyan ( ` ###### ${ value } ` ) , {
25
+ export const h6 = blockTag ( ( value ) => chalk . cyan ( `###### ${ value } ` ) , {
26
26
marginTop : 1 ,
27
27
marginBottom : 1 ,
28
28
} ) ;
You can’t perform that action at this time.
0 commit comments