Skip to content

orlin/Iosevka

 
 

Repository files navigation

Iosevka v3.1.1 -- forked for custom build and dist/

Coders’ typeface, built from code.

This is a custom Iosevka. Built for use by my dots. Cloning the repo takes forever, as it is huge, such as around 3 Gigs unreal, thus the install script copies the fonts from the dist directory found here on GitHub. More specifically it is the install/term script which does that.

The bin/ directory contains scripts that I build and try custom my builds with as declared by private-build-plans.toml. Just be sure to exit / restart the terminal after you run the bin/install-ttf script.

This is meant for building the font on a Linux, I have used Ubuntu for the purpose. Used the following steps to install the pre-requisites:

Installation

Quit your editor/program. Unzip and open the folder.

  • Instructions for Windows: Download the fonts from the Releases, select the font files and right click, then hit "Install".
    • On Windows 10 1809 or newer the default font installation is per-user, and it may cause compatibility issues for some applications, mostly written in Java. To cope with this, right click and select "Install for all users" instead. Ref.
  • Instructions for macOS
    • Standard distribution in Homebrew: brew tap homebrew/cask-fonts && brew cask install font-iosevka && brew cask install font-iosevka-slab
    • Customizable install using Homebrew: see robertgzr/homebrew-tap.
  • Linux : Copy the TTF files to your fonts directory → Run sudo fc-cache.
    • Arch Linux users can install the font from the AUR here using an AUR wrapper or by doing it manually. All variants.
    • Void Linux users can install the font with xbps-install font-iosevka.
  • FreeBSD: The font can be installed with pkg install iosevka.
  • OpenBSD: The font can be installed with pkg_add iosevka-fonts-<variant>. Run pkg_info -Q iosevka-fonts to see which variants are available.

Weights, Variants and OpenType features

The typeface contains 9 weights (Thin to Heavy) alongside with both italic and oblique versions, with the same metrics as the regular one.

Weights sample

All versions include the same ranges of characters: Latin letters, Greek letters (including Polytonic), some Cyrillic letters, IPA symbols and common punctuations and some symbols. You can check out the full list here.

Languages Sample

160 Supported Languages:

Afrikaans, Aghem, Akan, Albanian, Asturian, Asu, Azerbaijani, Bafia, Bambara, Basaa, Basque, Belarusian, Bemba, Bena, Bosnian, Breton, Bulgarian, Catalan, Cebuano, Central Atlas Tamazight, Chechen, Chiga, Colognian, Cornish, Croatian, Czech, Danish, Duala, Dutch, Embu, English, Esperanto, Estonian, Ewe, Ewondo, Faroese, Filipino, Finnish, French, Friulian, Fulah, Galician, Ganda, German, Greek, Gusii, Hausa, Hawaiian, Hungarian, Icelandic, Igbo, Inari Sami, Indonesian, Interlingua, Irish, Italian, Javanese, Jola-Fonyi, Kabuverdianu, Kabyle, Kako, Kalaallisut, Kalenjin, Kamba, Kazakh, Kikuyu, Kinyarwanda, Koyra Chiini, Koyraboro Senni, Kurdish, Kwasio, Kyrgyz, Lakota, Langi, Latvian, Lingala, Lithuanian, Low German, Lower Sorbian, Luba-Katanga, Luo, Luxembourgish, Luyia, Macedonian, Machame, Makhuwa-Meetto, Makonde, Malagasy, Malay, Maltese, Manx, Maori, Masai, Meru, Metaʼ, Mongolian, Morisyen, Mundang, Nama, Ngiemboon, North Ndebele, Northern Sami, Norwegian Bokmål, Norwegian Nynorsk, Nuer, Nyankole, Oromo, Ossetic, Polish, Portuguese, Prussian, Quechua, Romanian, Romansh, Rombo, Rundi, Russian, Rwa, Sakha, Samburu, Sango, Sangu, Scottish Gaelic, Sena, Serbian, Shambala, Shona, Slovak, Slovenian, Soga, Somali, Spanish, Swahili, Swedish, Swiss German, Tachelhit (shi_latn), Taita, Tajik, Tasawaq, Tatar, Teso, Tongan, Turkish, Turkmen, Ukrainian, Upper Sorbian, Uzbek, Vai (vai_latn), Vietnamese, Volapük, Vunjo, Walser, Welsh, Western Frisian, Wolof, Xhosa, Yangben, Yoruba, Zarma, Zulu

Iosevka supports accessing all letter variants using OpenType features.

Style Sets

Character Variants

Ligations

Ligations Sample

Iosevka’s default ligation set is assigned to calt feature, though not all of them are enabled by default.

Iosevka supports Language-Specific Ligations, which is the ligation set enabled only under certain languages. These ligation sets are assigned to custom feature tags, like CLIK.

Building from Source

To build Iosevka you should:

  1. Ensure that nodejs (≥ 12.16.0), ttfautohint, otfcc (≥ 0.10.3-alpha) and otf2otc are present.
  2. Install necessary libs by npm install. If you’ve installed them, upgrade to the latest.
  3. npm run build -- contents::iosevka.

You will find TTFs, as well as WOFF(2) web fonts and one Webfont CSS in the dist/ directory.

Using a Docker container

Refer to these instructions.

Build Your Own Style

Since version 2.0, Iosevka would no longer support building via makefile. To initialize a custom build, you need:

  1. Create private-build-plans.toml file.

  2. Add a build plan into private-build-plans.toml, following this format:

    [buildPlans.iosevka-custom]               # <iosevka-custom> is your plan name
    family = "Iosevka Custom"                 # Font menu family name
    design = ["v-i-hooky", "v-l-hooky"]       # Customize styles
    # upright = ["upright-styles"]            # Uncomment this line to set styles for upright only
    # italic = ["italic-styles"]              # Uncomment this line to set styles for italic only
    # oblique = ["oblique-styles"]            # Uncomment this line to set styles for oblique only
    hintParams = ["-a", "sss"]                # Optional custom parameters for ttfautohint
    
    ###################################################################################################
    # Override default building weights
    # When buildPlans.<plan name>.weights is absent, all weights would built and mapped to
    # default values.
    # IMPORTANT : Currently "menu" and "css" property only support numbers between 0 and 1000.
    #             and "shape" properly only supports number between 100 and 900 (inclusive).
    #             If you decide to use custom weights you have to define all the weights you
    #             plan to use otherwise they will not be built.
    [buildPlans.iosevka-custom.weights.regular]
    shape = 400  # Weight for glyph shapes.
    menu  = 400  # Weight for the font's names.
    css   = 400  # Weight for webfont CSS.
    
    [buildPlans.iosevka-custom.weights.book]
    shape = 450
    menu  = 450  # Use 450 here to name the font's weight "Book"
    css   = 450
    
    [buildPlans.iosevka-custom.weights.bold]
    shape = 700
    menu  = 700
    css   = 700
    
    # End weight section
    ###################################################################################################
    
    ###################################################################################################
    # Override default building slant sets
    # Format: <upright|italic|oblique> = <"normal"|"italic"|"oblique">
    # When this section is absent, all slants would be built.
    
    [buildPlans.iosevka-custom.slants]
    upright = "normal"
    italic = "italic"
    oblique = "oblique"
    
    # End slant section
    ###################################################################################################
    
    ###################################################################################################
    # Override default building widths
    # When buildPlans.<plan name>.widths is absent, all widths would built and mapped to
    # default values.
    # IMPORTANT : Currently "shape" property only supports numbers between 434 and 664 (inclusive),
    #             while "menu" only supports integers between 1 and 9 (inclusive).
    #             The "shape" parameter specifies the unit width, measured in 1/1000 em. The glyphs'
    #             width are equal to, or a simple multiple of the unit width.
    #             If you decide to use custom widths you have to define all the widths you plan to use,
    #             otherwise they will not be built.
    
    [buildPlans.iosevka-custom.widths.normal]
    shape = 500        # Unit Width, measured in 1/1000 em.
    menu  = 5          # Width grade for the font's names.
    css   = "normal"   # "font-stretch' property of webfont CSS.
    
    [buildPlans.iosevka-custom.widths.extended]
    shape = 576
    menu  = 7
    css   = "expanded"
    
    # End width section
    ###################################################################################################
    
    ###################################################################################################
    # Character Exclusion
    # Specify character ranges in the section below to exclude certain characters from the font being
    # built. Remove this section when this feature is not needed.
    
    [buildPlans.iosevka-custom.exclude-chars]
    ranges = [[10003, 10008]]
    
    # End character exclusion
    ###################################################################################################
    
    ###################################################################################################
    # Compatibility Ligatures
    # Certain applications like Emacs does not support proper programming liagtures provided by
    # OpenType, but can support ligatures provided by PUA codepoints. Therefore you can edit the
    # following section to build PUA characters that are generated from the OpenType ligatures.
    # Remove this section when compatibility ligatures are not needed.
    
    [[buildPlans.iosevka-custom.compatibility-ligatures]]
    unicode = 57600 # 0xE100
    featureTag = 'calt'
    sequence = '<*>'
    
    # End compatibility ligatures section
    ###################################################################################################
    
    ###################################################################################################
    # Metric overrides
    # Certain metrics like line height (leading) could be overridden in your build plan file.
    # Edit the values to change the metrics. Remove this section when overriding is not needed.
    
    [buildPlans.iosevka-custom.metric-override]
    leading = 1250
    winMetricAscenderPad = 0
    winMetricDescenderPad = 0
    powerlineScaleY = 1
    powerlineScaleX = 1
    powerlineShiftY = 0
    powerlineShiftX = 0
    
    # End metric override section
    ###################################################################################################
    
  3. Run npm run build -- contents::<your plan name> and the built fonts would be avaliable in dist/. Aside from contents::<plan>, other options are:

    1. contents::<plan> : TTF (Hinted and Unhinted), WOFF(2) and Webfont CSS;
    2. ttf::<plan> : TTF;
    3. ttf-unhinted::<plan> : Unhinted TTF only;
    4. woff::<plan> : TTF and WOFF only;
    5. woff2::<plan> : TTF and WOFF2 only;
      • Note: Since version 2.2.0, we are using two colons (::) in the build target names.

The current available styles for design/upright/italic/oblique options are:

  • Styles for general shape:

    • sans : Sans serif (default).
    • slab : Slab serif.
  • Styles related to ligations and spacing:

  • no-ligation : Disable ligations.

  • no-cv-ss : Prevent generation of cv## and ss## features.

  • sp-term : Make the symbols' width suitable for terminal emulators. Arrows and geometric symbols will become narrower.

  • sp-force-monospace: Apply sp-term and further:

    • Completely remove wide glyphs. All non-combining glyphs will be exactly the same width.
    • Remove NWID and WWID OpenType feature.
    • Recommended for Linux users who customize for their terminal fonts: certain applications, including FontConfig, recognizes a font as monospace if and only if its every non-combining glyphs having the same width.
  • sp-fixed : Apply sp-force-monospace and no-ligation together.

  • Styles for ligation sets, include:

    • ligset-dlig: Default ligation set would be assigned to Discretionary ligatures.
    • ligset-clike: Default ligation set would be assigned to C-Like.
    • ligset-javascript: Default ligation set would be assigned to JavaScript.
    • ligset-php: Default ligation set would be assigned to PHP.
    • ligset-ml: Default ligation set would be assigned to ML.
    • ligset-fsharp: Default ligation set would be assigned to F#.
    • ligset-fstar: Default ligation set would be assigned to F*.
    • ligset-haskell: Default ligation set would be assigned to Haskell.
    • ligset-idris: Default ligation set would be assigned to Idris.
    • ligset-elm: Default ligation set would be assigned to Elm.
    • ligset-purescript: Default ligation set would be assigned to PureScript.
    • ligset-swift: Default ligation set would be assigned to Swift.
    • ligset-coq: Default ligation set would be assigned to Coq.
    • ligset-matlab: Default ligation set would be assigned to Matlab.
  • Styles for customizing the default (calt) ligation set. By choosing one or multiple items listed below, the ligation set of calt will only contain the corresponded ligations of the selectors you used.

    • calt-center-ops: Vertically align some of the operators (like *) to the center position it is before or after a "center" operator (like +).
    • calt-arrow: Enable ligation set that forms arrows.
    • calt-arrow2: Enable ligation for more arrows, like >>=.
    • calt-trig: Enable ligation for <|, |> , <||, and other bar-and-angle-bracket symbols.
    • calt-eqeqeq: Enable special triple-line ligation for === only.
    • calt-eqeq: Enable ligation for == and ===.
    • calt-ineq: Enable ligation for <= and >=.
    • calt-exeqeq: Enable special triple-line ligation for !== only.
    • calt-eqexeq: Enable special triple-line ligation for =!= only.
    • calt-exeq: Enable ligation for != and !==.
    • calt-tildeeq: Enable ligation for ~= as inequality.
    • calt-eqslasheq: Enable special triple-line ligation for =/= as inequality.
    • calt-slasheq: Enable ligation for /= and =/= as inequality.
    • calt-ltgt-ne: Enable ligation for <> as inequality.
    • calt-ltgt-diamond: Enable ligation for <> as diamond.
    • calt-brst: Center asterisk in (* and *).
    • calt-plusplus: Enable ligation for ++ and further plus-chaining.
    • calt-kern-dotty: Move connecting dotty punctuations closer, like for ::, ::: and ....
    • calt-logic: Enable ligation for /\ and \/.
    • calt-llgg: Enable ligation for <<, >> and other angle-bracket chaining.
    • calt-llggeq: Enable ligation for <<=, >>= as shift operator.
    • calt-dotoper: Treat dot (.) as operator and perform chained centering.
    • calt-arrowZALE: Treat <= as arrow.
    • calt-arrowZAGE: Treat >= as co-arrow.
    • calt-html-comment: Enable ligation for <!-- and <!---.
  • Styles as stylistic sets:

    • ss01: Set character variant to “Andale Mono Style”.
    • ss02: Set character variant to “Anonymous Pro Style”.
    • ss03: Set character variant to “Consolas Style”.
    • ss04: Set character variant to “Menlo Style”.
    • ss05: Set character variant to “Fira Mono Style”.
    • ss06: Set character variant to “Liberation Mono Style”.
    • ss07: Set character variant to “Monaco Style”.
    • ss08: Set character variant to “Pragmata Pro Style”.
    • ss09: Set character variant to “Source Code Pro Style”.
    • ss10: Set character variant to “Envy Code R Style”.
    • ss11: Set character variant to “X Window Style”.
    • ss12: Set character variant to “Ubuntu Mono Style”.
    • ss13: Set character variant to “Lucida Style”.
    • ss14: Set character variant to “JetBrains Mono Style”.
    • ss20: Set character variant to “Curly Style”.
  • Styles for individual characters. They are easy-to-understand names of the cv## styles, including:

    • Styles for a:
      • v-a-doublestorey, cv01: Double-storey a (default for Upright).
      • v-a-singlestorey, cv02: Single-storey a (default for Italic).
    • Styles for f:
      • v-f-straight, cv52: f without bottom hook (default for Sans Upright).
      • v-f-tailed, cv53: f with a leftward bottom hook (default for Italic).
      • v-f-serifed, cv84: f with bottom serif (default for Slab Upright).
      • v-f-straight-tailed, VXAD: f with straight tail.
    • Styles for g:
      • v-g-doublestorey, cv11: Double-storey g.
      • v-g-singlestorey, cv12: Single-storey g (default).
      • v-g-opendoublestorey, cv24: Open Double-storey g, like Trebuchet MS or Fira Code.
    • Styles for i:
      • v-i-serifed, cv03: Serifed i (default for Upright).
      • v-i-italic, cv04: Italic i (default for Italic).
      • v-i-hooky, cv05: Hooky i.
      • v-i-zshaped, cv06: Z-shaped i.
      • v-i-line, cv56: i like a straight line.
      • v-i-tailed, cv88: Tailed i.
      • v-i-hookybottom, VXAA: i with a straight tail.
    • Styles for j:
      • v-j-line, cv57: j like a straight line.
      • v-j-serifed, cv58: j with top serif (default).
      • v-j-straight, cv98: j without serif.
    • Styles for k, K:
      • v-k-straight, cv68: k with standard shape (default for Upright).
      • v-k-curly, cv69: Slightly curly k, like Iosevka 2.x.
      • v-k-cursive, cv70: k with a cursive loop (default for Italic).
    • Styles for l:
      • v-l-serifed, cv07: Serifed l (default for Upright).
      • v-l-italic, cv08: Italic, cursive l (default for Italic).
      • v-l-hooky, cv09: Hooky l.
      • v-l-zshaped, cv10: Z-shaped l.
      • v-l-tailed, cv27: l with a curved tail.
      • v-l-hookybottom, cv28: l with a straight tail.
      • v-l-line, cv59: l like a straight line.
    • Styles for m:
      • v-m-normal, cv25: m with normal middle leg, touching the baseline (default).
      • v-m-shortleg, cv26: m with shorter middle leg, like Ubuntu Mono.
    • Styles for q:
      • v-q-straight, VXAZ: q with straight bar (default).
      • v-q-tailed, VXBA: q with tail.
    • Styles for r:
      • v-r-straight, cv85: Straight, serif-less r (default for Sans).
      • v-r-serifed, cv86: r with serif at both top and bottom (default for Slab Upright).
      • v-r-top-serifed, cv87: r with serifs at top-left only (default for Slab Italic).
    • Styles for t:
      • v-t-standard, cv40: Standard t shape (default).
      • v-t-cross, cv41: Futura-like t shape.
    • Styles for u:
      • v-u-with-bar, cv89: Normal u with right bar (default).
      • v-u-without-bar, cv90: Normal u without right bar, like a smaller uppercase U.
    • Styles for v, V:
      • v-v-straight, cv71: Standard, straight V and v (default).
      • v-v-curly, cv72:  Slightly curly V and v, like Iosevka 2.x.
    • Styles for w, W:
      • v-w-straight, cv75: Standard, straight W and w (default).
      • v-w-curly, cv76: Slightly curly W and w, like Iosevka 2.x.
    • Styles for x, X:
      • v-x-straight, cv77: Standard, straight X and x (default).
      • v-x-curly, cv78: Slightly curly X and x, like Iosevka 2.x.
    • Styles for y:
      • v-y-straight, cv48: Letter y that is fully straight (default for Sans Upright).
      • v-y-cursive, cv49: Cursive-like y (default for Italic).
      • v-y-curly, cv79: More curly letter y, like Iosevka 2.x.
      • v-y-straight-turn, VXBF: Letter y with straight upper and a tail turns leftward (default for Slab Upright).
    • Styles for z:
      • v-z-standard, VXBD: Standard Z and z (default).
      • v-z-with-crossbar, VXBE: Z and z with a cross bar for better dsitinction with 2.
    • Styles for A, Λ, Δ:
      • v-turn-v-straight, cv73: Standard, straight A, Λ, Δ (default).
      • v-turn-v-curly, cv74: Slightly curly A, Λ, Δ, like Iosevka 2.x.
    • Styles for B:
      • v-capital-b-standard, VXAP: Standard B (default).
      • v-capital-b-more-asymmetric, VXAQ: More asymmetric B to differentiate with 8.
    • Styles for G:
      • v-capital-g-tooth, cv91: Toothed G (default).
      • v-capital-g-toothless, cv92: Toothless G.
    • Styles for Q:
      • v-capital-q-taily, cv42: Q with a curly tail (default).
      • v-capital-q-straight, cv43: Q with a straight tail like in the old versions.
    • Styles for R:
      • v-capital-r-straight, cv82: Standard, straight-leg R (default).
      • v-capital-r-curly, cv83:  Slightly curly-legged R, like Iosevka 2.x.
    • Styles for Y:
      • v-capital-y-straight, cv80: Standard, straight Y (default).
      • v-capital-y-curly, cv81: Slightly curly Y, like Iosevka 2.x.
    • Styles for 0:
      • v-zero-slashed, cv13: Slashed Zero 0 (default).
      • v-zero-dotted, cv14: Dotted Zero 0.
      • v-zero-unslashed, cv15: O-like 0.
      • v-zero-reverse-slashed, cv93: Reverse-slashed 0.
      • v-zero-long-dotted, VXAB: Long-dotted Zero 0 like Hack.
    • Styles for 1:
      • v-one-nobase, cv50: 1 with bottom serif (default for Sans).
      • v-one-base, cv51: 1 without bottom serif (default for Slab).
      • v-one-line, VXAM: 1 drawn just like a straight line.
    • Styles for 3:
      • v-three-flattop, cv46: Flat top 3 (Like Museo Sans / Montserrat).
      • v-three-twoarcs, cv47: Arched top 3 (default).
    • Styles for 4:
      • v-four-closed, VXAR: 4 with closed contour (default).
      • v-four-closed-non-crossing, VXAS: 4 with closed contour but the horizontal bar does not overflow the vertical bar.
      • v-four-semi-open, VXAT: 4 with semi-open contour.
      • v-four-semi-open-non-crossing, VXAU: 4 with semi-open contour but the horizontal bar does not overflow the vertical bar.
      • v-four-open, VXAV: 4 with open contour.
      • v-four-open-non-crossing, VXAW: 4 with open contour but the horizontal bar does not overflow the vertical bar.
    • Styles for 6:
      • v-six-closed-contour, VXAE: 6 with a more closed contour.
      • v-six-open-contour, VXAF: 6 with a more open contour.
      • v-six-straight-bar, VXBB: 6 with a straight bar (default).
    • Styles for 7:
      • v-seven-noserif, cv64: 7 without serif (default for Sans).
      • v-seven-serifed, cv65: 7 with initial serif (default for Slab).
      • v-seven-crossbar, VXAX: 7 with crossbar.
      • v-seven-crossbar-serifed, VXAY: 7 with crossbar and initial serif.
    • Styles for 9:
      • v-nine-closed-contour, cv96: 9 with a more closed contour.
      • v-nine-open-contour, cv97: 9 with a more open contour.
      • v-nine-straight-bar, VXBC: 9 with a straight bar (default).
    • Styles for ß:
      • v-eszet-traditional, cv34: Traditional, Fraktur-like Eszet.
      • v-eszet-sulzbacher, cv35: A more modern, beta-like Eszet (default).
      • v-eszet-longs-s-lig, VXAC: An Eszet shown as a ligature of long-S (ſ) and s.
    • Styles for λ:
      • v-lambda-straight, cv94: More-straight letter λ (default).
      • v-lambda-curly, cv95: More curly letter λ, like Iosevka 2.x.
    • Styles for ~:
      • v-tilde-high, cv16: Higher tilde ~.
      • v-tilde-low, cv17: Lower tilde ~ (default).
    • Styles for *:
      • v-asterisk-high, cv18: Higher five-pointed asterisk * (default).
      • v-asterisk-low, cv19: Lower five-pointed asterisk *.
      • v-asterisk-hexhigh, cv60: Higher six-pointed asterisk *.
      • v-asterisk-hexlow, cv61: Lower six-pointed asterisk *.
    • Styles for _:
      • v-underscore-high, cv20: Higher underscore _, placed right below baseline (default).
      • v-underscore-low, cv21: Lower underscore _, placed right above descender line.
      • v-underscore-above-baseline, cv99: Extra-high _, placed right below baseline.
    • Styles for :
      • v-paragraph-high, cv22: Higher paragraph symbol (default).
      • v-paragraph-low, cv23: Lower paragraph symbol .
    • Styles for ^:
      • v-caret-high, cv29: Higher circumflex ^ (default).
      • v-caret-low, cv30: Lower circumflex ^.
    • Styles for (, ):
      • v-paren-normal, VXAN: Parenthesis with normal contour (default).
      • v-paren-large-contour, VXAO: Parenthesis with larger contour, like that in Monaco.
    • Styles for {, }:
      • v-brace-straight, cv36: More straight braces.
      • v-brace-curly, cv37: More curly braces (default).
    • Styles for #:
      • v-numbersign-upright, cv44: Number sign with vertical bars (default).
      • v-numbersign-slanted, cv45: Number sign with slanted bars.
    • Styles for &:
      • v-ampersand-closed, VXAG: Ampersand (&) with a closed contour (default).
      • v-ampersand-upper-open, VXAH: Ampersand (&) with an open contour at upper half.
      • v-ampersand-lower-open, VXAI: Ampersand (&) with an open contour at lower half.
      • v-ampersand-et, VXAJ: Ampersand (&) drawn like a ligature of Ɛ and t.
      • v-ampersand-et-toothed, VXAK: Ampersand (&) drawn like a ligature of Ɛ and t with tooth.
      • v-ampersand-flat-top, VXAL: Ampersand (&) drawn with a flat top.
    • Styles for @:
      • v-at-threefold, cv31: The long, three-fold At symbol (@) (default).
      • v-at-fourfold, cv32: The traditional, four-fold At symbol (@).
      • v-at-short, cv33: The shorter, Fira-like At symbol (@).
    • Styles for $:
      • v-dollar-open, cv38: Dollar symbol with open contour.
      • v-dollar-through, cv39: Dollar symbol with strike-through vertical bar (default).
      • v-dollar-opencap, cv54: Dollar symbol with open contour, not exceeding baseline and ascender.
      • v-dollar-throughcap, cv55: Dollar symbol with strike-through vertical bar, not exceeding baseline and ascender.
    • Styles for %:
      • v-percent-dots, cv62: Percent %, Per-mille and basis point using rectangular dots.
      • v-percent-rings, cv63: Percent %, Per-mille and basis point using rings (default).
    • Styles for <=, >=:
      • v-lig-ltgteq-flat, cv66: The lower bar of <= and >= ligation is flat (default).
      • v-lig-ltgteq-slanted, cv67: The lower bar of <= and >= ligation is slanted.

Using Docker

Refer to these instructions.

For Chinese and Japanese users...

Sarasa Gothic.


Family Matrix

About

Slender typeface for code, from code.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 63.5%
  • HTML 33.4%
  • CSS 2.5%
  • Shell 0.6%