@@ -24,6 +24,11 @@ export const githubLight = createTheme({
24
24
{ tag : [ t . heading ] , color : '#24292e' , fontWeight : 'bold' } ,
25
25
{ tag : [ t . emphasis ] , color : '#24292e' , fontStyle : 'italic' } ,
26
26
{ tag : [ t . deleted ] , color : '#b31d28' , backgroundColor : 'ffeef0' } ,
27
+ { tag : [ t . atom , t . bool , t . special ( t . variableName ) ] , color : '#e36209' } ,
28
+ { tag : [ t . url , t . escape , t . regexp , t . link ] , color : '#032f62' } ,
29
+ { tag : t . link , textDecoration : 'underline' } ,
30
+ { tag : t . strikethrough , textDecoration : 'line-through' } ,
31
+ { tag : t . invalid , color : '#cb2431' } ,
27
32
] ,
28
33
} ) ;
29
34
@@ -47,5 +52,9 @@ export const githubDark = createTheme({
47
52
{ tag : [ t . heading ] , color : '#d2a8ff' , fontWeight : 'bold' } ,
48
53
{ tag : [ t . emphasis ] , color : '#d2a8ff' , fontStyle : 'italic' } ,
49
54
{ tag : [ t . deleted ] , color : '#ffdcd7' , backgroundColor : 'ffeef0' } ,
55
+ { tag : [ t . atom , t . bool , t . special ( t . variableName ) ] , color : '#ffab70' } ,
56
+ { tag : t . link , textDecoration : 'underline' } ,
57
+ { tag : t . strikethrough , textDecoration : 'line-through' } ,
58
+ { tag : t . invalid , color : '#f97583' } ,
50
59
] ,
51
60
} ) ;
0 commit comments