Update text color to be more consistent

This commit is contained in:
Gabriel Arazas 2022-05-09 20:08:12 +08:00
parent 6bb0bb9861
commit ed55b83ac5
2 changed files with 14 additions and 4 deletions

View File

@ -17,6 +17,16 @@ and this project adheres to https://semver.org/spec/v2.0.0.html[Semantic Version
== Unreleased
=== Updated
* More consistent theming for the content text.
== [0.2.0] - 2022-05-04
=== Changed

View File

@ -95,7 +95,7 @@ code {
pre {
background: var(--base01);
color: var(--base06);
color: var(--base05);
border: var(--border-style);
font-family: var(--mono-family);
font-size: 1rem;
@ -120,7 +120,7 @@ mark {
color: var(--background);
&::selection {
color: var(--base06);
color: var(--base05);
}
}
@ -186,8 +186,8 @@ blockquote footer {
/* Form controls */
button {
background: unset;
border: var(--base06) solid 1px;
color: var(--base06);
border: var(--base05) solid 1px;
color: var(--base05);
cursor: pointer;
font-size: 1rem;
padding: 0.5rem;