├── .github └── workflows │ └── Kablammo Build and Test.yml ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── DESCRIPTION.en_us.html ├── OFL.txt ├── README.md ├── changelog.md ├── documentation └── img │ ├── Kablammo-ContextualAlternates.png │ ├── Kablammo-Logo.gif │ └── Kablammo-Morph.gif ├── fonts ├── otf │ ├── Kablammo-Bloop.otf │ ├── Kablammo-Eek.otf │ ├── Kablammo-Splat.otf │ └── Kablammo-Zoink.otf ├── variable │ └── Kablammo[MORF].ttf └── webfonts │ └── Kablammo[MORF].woff2 ├── requirements.txt ├── sources ├── Kablammo.glyphs └── config.yml └── testing ├── Gash-Dash-Construction-Exploration.ai ├── Gash-Dash-Construction-Exploration.pdf ├── JK-Spacing-Test.indd ├── JK-Test-Headlines.indd ├── JK-Test-Kerning-Context.indd ├── JK-Test-Sources-Chaos.indd ├── JK-Test-Spacing.indd ├── JK-Test-emoji.indd ├── misc ├── JK-Test-All.indd ├── JK-Test-Clean.indd ├── JK-Test-Extremes-Chaos.indd ├── JK-Test-SingleStyle-2.indd ├── JK-Test-SingleStyle.indd ├── JK-Test-Spacing.indd └── JK-Test.indd ├── proofing-scripts ├── CharacterSetGenerator.py ├── KerningProofGenerator.py └── SpacingProofGenerator.py └── text ├── AccentsByBase.txt └── BasesByAccent.txt /.github/workflows/Kablammo Build and Test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/.github/workflows/Kablammo Build and Test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/changelog.md -------------------------------------------------------------------------------- /documentation/img/Kablammo-ContextualAlternates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/documentation/img/Kablammo-ContextualAlternates.png -------------------------------------------------------------------------------- /documentation/img/Kablammo-Logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/documentation/img/Kablammo-Logo.gif -------------------------------------------------------------------------------- /documentation/img/Kablammo-Morph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/documentation/img/Kablammo-Morph.gif -------------------------------------------------------------------------------- /fonts/otf/Kablammo-Bloop.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/fonts/otf/Kablammo-Bloop.otf -------------------------------------------------------------------------------- /fonts/otf/Kablammo-Eek.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/fonts/otf/Kablammo-Eek.otf -------------------------------------------------------------------------------- /fonts/otf/Kablammo-Splat.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/fonts/otf/Kablammo-Splat.otf -------------------------------------------------------------------------------- /fonts/otf/Kablammo-Zoink.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/fonts/otf/Kablammo-Zoink.otf -------------------------------------------------------------------------------- /fonts/variable/Kablammo[MORF].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/fonts/variable/Kablammo[MORF].ttf -------------------------------------------------------------------------------- /fonts/webfonts/Kablammo[MORF].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/fonts/webfonts/Kablammo[MORF].woff2 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/requirements.txt -------------------------------------------------------------------------------- /sources/Kablammo.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/sources/Kablammo.glyphs -------------------------------------------------------------------------------- /sources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/sources/config.yml -------------------------------------------------------------------------------- /testing/Gash-Dash-Construction-Exploration.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/Gash-Dash-Construction-Exploration.ai -------------------------------------------------------------------------------- /testing/Gash-Dash-Construction-Exploration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/Gash-Dash-Construction-Exploration.pdf -------------------------------------------------------------------------------- /testing/JK-Spacing-Test.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/JK-Spacing-Test.indd -------------------------------------------------------------------------------- /testing/JK-Test-Headlines.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/JK-Test-Headlines.indd -------------------------------------------------------------------------------- /testing/JK-Test-Kerning-Context.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/JK-Test-Kerning-Context.indd -------------------------------------------------------------------------------- /testing/JK-Test-Sources-Chaos.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/JK-Test-Sources-Chaos.indd -------------------------------------------------------------------------------- /testing/JK-Test-Spacing.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/JK-Test-Spacing.indd -------------------------------------------------------------------------------- /testing/JK-Test-emoji.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/JK-Test-emoji.indd -------------------------------------------------------------------------------- /testing/misc/JK-Test-All.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/misc/JK-Test-All.indd -------------------------------------------------------------------------------- /testing/misc/JK-Test-Clean.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/misc/JK-Test-Clean.indd -------------------------------------------------------------------------------- /testing/misc/JK-Test-Extremes-Chaos.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/misc/JK-Test-Extremes-Chaos.indd -------------------------------------------------------------------------------- /testing/misc/JK-Test-SingleStyle-2.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/misc/JK-Test-SingleStyle-2.indd -------------------------------------------------------------------------------- /testing/misc/JK-Test-SingleStyle.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/misc/JK-Test-SingleStyle.indd -------------------------------------------------------------------------------- /testing/misc/JK-Test-Spacing.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/misc/JK-Test-Spacing.indd -------------------------------------------------------------------------------- /testing/misc/JK-Test.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/misc/JK-Test.indd -------------------------------------------------------------------------------- /testing/proofing-scripts/CharacterSetGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/proofing-scripts/CharacterSetGenerator.py -------------------------------------------------------------------------------- /testing/proofing-scripts/KerningProofGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/proofing-scripts/KerningProofGenerator.py -------------------------------------------------------------------------------- /testing/proofing-scripts/SpacingProofGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/proofing-scripts/SpacingProofGenerator.py -------------------------------------------------------------------------------- /testing/text/AccentsByBase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/text/AccentsByBase.txt -------------------------------------------------------------------------------- /testing/text/BasesByAccent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectro-Type-Foundry/kablammo/HEAD/testing/text/BasesByAccent.txt --------------------------------------------------------------------------------