[frontend] Add styling for mfm links and URLs

This commit is contained in:
Lilian 2024-08-02 20:03:25 +02:00
parent db1de23484
commit ba0d9f64f7
No known key found for this signature in database
2 changed files with 15 additions and 1 deletions

View file

@ -55,9 +55,22 @@
} }
} }
::deep {
.link-node {
color: var(--link);
}
}
::deep {
.url-node {
color: var(--link);
}
}
::deep { ::deep {
.hashtag-node { .hashtag-node {
text-decoration-line: none; text-decoration-line: none;
color: var(--link);
} }
} }

View file

@ -21,7 +21,8 @@
--highlight-color: #544d77; --highlight-color: #544d77;
--hover-color: #544f6f; --hover-color: #544f6f;
--accent-color: linear-gradient(to right, #9A92FF, #8372F5); --accent-color: linear-gradient(to right, #9A92FF, #8372F5);
--notice-color: #ffc684 --notice-color: #ffc684;
--link: #9E9EFF
} }