Add input color (#812)

This commit is contained in:
Bernat Borràs Civil 2023-10-16 08:01:50 +03:00 committed by GitHub
parent bd2181eaca
commit a917e1e3f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,10 @@ p {
color: get-light-color('text-color');
}
input {
color: get-light-color('text-color');
}
blockquote {
border-left: 4px solid get-light-color('accent-color');
background-color: rgba(get-light-color('accent-color'), 0.05);
@ -78,6 +82,10 @@ html[data-theme='dark'] {
color: get-dark-color('text-color');
}
input {
color: get-dark-color('text-color');
}
blockquote {
border-left: 4px solid get-dark-color('accent-color');
background-color: rgba(get-dark-color('accent-color'), 0.05);