use inter with proper hinting
This commit is contained in:
parent
d142760af1
commit
8ad305b206
|
@ -478,9 +478,25 @@ in
|
||||||
defaultFonts = {
|
defaultFonts = {
|
||||||
emoji = [ "Noto Color Emoji" ];
|
emoji = [ "Noto Color Emoji" ];
|
||||||
monospace = [ "Monaspace Argon" "IBM Plex Mono" "Noto Sans Mono" ];
|
monospace = [ "Monaspace Argon" "IBM Plex Mono" "Noto Sans Mono" ];
|
||||||
sansSerif = [ "Lexend" "IBM Plex Sans" "Noto Sans" ];
|
sansSerif = [ "Inter" "IBM Plex Sans" "Noto Sans" ];
|
||||||
serif = [ "Crimson" "IBM Plex Serif" "Noto Serif" ];
|
serif = [ "Crimson" "IBM Plex Serif" "Noto Serif" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# fixes pixelation
|
||||||
|
antialias = true;
|
||||||
|
|
||||||
|
# fixes antialiasing blur
|
||||||
|
hinting = {
|
||||||
|
enable = true;
|
||||||
|
style = "full";
|
||||||
|
autohint = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# makes it bolder
|
||||||
|
subpixel = {
|
||||||
|
rgba = "rgb";
|
||||||
|
lcdfilter = "default";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue