This is my attempt at recreating the font used in Analogue OS on the Analogue Pocket device. The original font was designed by Analogue Inc., and I do not claim any ownership of it. This is simply a recreation for personal use. The repository has been created as a way to share my recreation of the font with the public.
Feel free to use this font in any way you see fit. If you do use it, I would appreciate a credit in the form of a link to this repository.
I am not affiliated with Analogue Inc. in any way.
Note, that there's an extended fork of this font available here.
See a recreation of Analogue Pocket's home screen using HTML and CSS here.
.ttf
, .otf
and woff/2
files can be downloaded from the /dist
folder or from the Releases page.
Files included in the /src
folder:
- all the individual character
svg
s .vfc
(FontLab 8) project file.ufo
file (exported from FontLab).afdesign
(Affinity Desgner 1.10) files
Download the .otf
or .ttf
file and install it.
- Download the
.woff
and.woff2
files and copy them to your project. - Add the following CSS, but replace the font path with your own:
@font-face {
font-family: 'Analogue';
src: url('assets/AnalogueOS-Regular.woff2') format('woff2'),
url('assets/AnalogueOS-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
- Use like any other font:
font-family: Analogue, sans-serif;