Ensure bold text is themed properly

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-02-28 11:57:03 +05:30
parent b10fc85cb1
commit 902cd977a7
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@
--heading-color: #313131;
--blockquote-color: #7a7a7a;
--post-time-color: #757575;
--strong-color: #303030;
--color-mode: 'light';
--color-light: var(--background-color);
--button-icon: var(--icon-moon);
@ -28,6 +29,7 @@
--heading-color: white;
--blockquote-color: #bababa;
--post-time-color: #bababa;
--strong-color: white;
--color-mode: 'dark';
--button-icon: var(--icon-sun);
--button-icon-filter: var(--icon-sun-filter);
@ -50,6 +52,7 @@
--heading-color: white;
--blockquote-color: #bababa;
--post-time-color: #bababa;
--strong-color: white;
--color-mode: 'dark';
--button-icon: var(--icon-sun);
--button-icon-filter: var(--icon-sun-filter);

View File

@ -108,7 +108,7 @@ p {
}
strong {
color: #303030;
color: var(--strong-color);
}