Skip to content

Commit

Permalink
fix(prose): heading colors
Browse files Browse the repository at this point in the history
  • Loading branch information
lfsigreja committed Feb 8, 2024
1 parent 439436e commit 84ed7db
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 6 additions & 2 deletions src/azion-dark/extended-components/_markdown.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
.prose {
*:not(a, a > u) {
*:not(p, a, li) {
color: var(--text-color) !important;
}

*:is(p), *:is(li) {
color: var(--text-color-secondary) !important;
}

a, a > u {
*:is(a), *:is(a > u) {
color: var(--text-color-link) !important;
}
}
7 changes: 5 additions & 2 deletions src/azion-light/extended-components/_markdown.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
.prose {
*:not(a, a > u){

color: var(--text-color) !important;

*:is(p), *:is(li) {
color: var(--text-color-secondary) !important;
}

a, a > u {
*:is(a), *:is(a > u) {
color: var(--text-color-link) !important;
}
}

0 comments on commit 84ed7db

Please sign in to comment.