Skip to content

Commit

Permalink
diff fence highlight styling added. (#88)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Valdron <[email protected]>
  • Loading branch information
michael-valdron authored May 9, 2023
1 parent 44fd108 commit b49c8fa
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions apps/landing-page/styles/prism.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,17 @@ pre[class*='language-'] {
.token.combinator {
color: theme('colors.slate.400');
}

/* deleted diff styling */
.token.deleted-sign {
font-weight: bold;
color: theme('colors.rose.200');
background-color: theme('colors.rose.900');
}

/* inserted diff styling */
.token.inserted {
font-weight: bold;
color: theme('colors.green.200');
background-color: theme('colors.green.900');
}

0 comments on commit b49c8fa

Please sign in to comment.