🚸 make fonts prefer "Ubuntu" and "Noto Color Emoji"

This commit is contained in:
DrMaxNix 2023-05-08 19:39:28 +02:00
parent 5e8fa9305e
commit e86c19c9a2
1 changed files with 11 additions and 0 deletions

View File

@ -468,3 +468,14 @@
.emoji[aria-label="musical notes"] {
filter: invert(100%) hue-rotate(180deg);
}
/* fonts */
:root {
--fonts-proportional: "Ubuntu", -apple-system, "Segoe UI", system-ui, "Roboto", "Helvetica Neue", "Arial" !important;
--fonts-monospace: "Ubuntu Mono", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace, var(--fonts-emoji) !important;
--fonts-emoji: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Twemoji Mozilla" !important;
}