├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yaml │ ├── qa.yaml │ ├── release.yaml │ └── website_master.yaml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Makefile ├── OFL.txt ├── README.md ├── SECURITY.md ├── fonts ├── otf │ ├── Lilex-Bold.otf │ ├── Lilex-BoldItalic.otf │ ├── Lilex-ExtraLight.otf │ ├── Lilex-ExtraLightItalic.otf │ ├── Lilex-Italic.otf │ ├── Lilex-Light.otf │ ├── Lilex-LightItalic.otf │ ├── Lilex-Medium.otf │ ├── Lilex-MediumItalic.otf │ ├── Lilex-Regular.otf │ ├── Lilex-SemiBold.otf │ ├── Lilex-SemiBoldItalic.otf │ ├── Lilex-Thin.otf │ └── Lilex-ThinItalic.otf ├── ttf │ ├── Lilex-Bold.ttf │ ├── Lilex-BoldItalic.ttf │ ├── Lilex-ExtraLight.ttf │ ├── Lilex-ExtraLightItalic.ttf │ ├── Lilex-Italic.ttf │ ├── Lilex-Light.ttf │ ├── Lilex-LightItalic.ttf │ ├── Lilex-Medium.ttf │ ├── Lilex-MediumItalic.ttf │ ├── Lilex-Regular.ttf │ ├── Lilex-SemiBold.ttf │ ├── Lilex-SemiBoldItalic.ttf │ ├── Lilex-Thin.ttf │ └── Lilex-ThinItalic.ttf ├── variable │ ├── Lilex-Italic[wght].ttf │ └── Lilex[wght].ttf └── webfonts │ ├── Lilex-Bold.woff2 │ ├── Lilex-BoldItalic.woff2 │ ├── Lilex-ExtraLight.woff2 │ ├── Lilex-ExtraLightItalic.woff2 │ ├── Lilex-Italic.woff2 │ ├── Lilex-Italic[wght].woff2 │ ├── Lilex-Light.woff2 │ ├── Lilex-LightItalic.woff2 │ ├── Lilex-Medium.woff2 │ ├── Lilex-MediumItalic.woff2 │ ├── Lilex-Regular.woff2 │ ├── Lilex-SemiBold.woff2 │ ├── Lilex-SemiBoldItalic.woff2 │ ├── Lilex-Thin.woff2 │ ├── Lilex-ThinItalic.woff2 │ └── Lilex[wght].woff2 ├── images ├── alt_ligatures@2x.png ├── alternatives@2x.png ├── arrows@2x.png ├── character-set@2x.png ├── italics@2x.png ├── logo.svg ├── main@2x.png └── styles@2x.png ├── lefthook.yml ├── pyproject.toml ├── scripts ├── ansi_features.py ├── changelog.py ├── generate.py ├── lilexgen │ ├── __init__.py │ ├── config.py │ ├── generate.py │ └── opentype_features │ │ ├── __init__.py │ │ ├── const.py │ │ ├── features_loader.py │ │ ├── ligatures.py │ │ └── spacers.py ├── normalize_names.py ├── porting.py └── website_env.py ├── sources ├── Lilex │ ├── Lilex-Italic.glyphs │ ├── Lilex.glyphs │ └── config.yaml ├── LilexDuo │ ├── LilexDuo.glyphs │ ├── LilexDuo.patch.glyphs │ └── config.yaml ├── README.md ├── lilexgen_config.yaml └── opentype_features │ ├── _classes │ ├── acc_comb_bottom.cls │ ├── acc_comb_case.cls │ ├── acc_comb_dflt.cls │ ├── acc_comb_top.cls │ ├── lca_alt1.fea │ ├── lca_cyrl_alt1.fea │ ├── lca_cyrl_dflt.fea │ ├── lca_dflt.fea │ ├── lcg_alt1.fea │ ├── lcg_dflt.fea │ ├── numbers_dflt.fea │ ├── numbers_dnom.fea │ ├── numbers_hex.fea │ ├── numbers_numr.fea │ ├── numbers_onum.fea │ ├── numbers_sinf.fea │ ├── numbers_sups.fea │ └── uc_basic.cls │ ├── aalt.fea │ ├── calt │ ├── colon.fea │ ├── equal-arrows.fea │ ├── hyphen-arrows.fea │ ├── multiply.fea │ ├── numbersigns.fea │ └── underscores.fea │ ├── case.fea │ ├── ccmp.fea │ ├── cv01.fea │ ├── cv02.fea │ ├── cv03.fea │ ├── cv04.fea │ ├── cv05.fea │ ├── cv06.fea │ ├── cv07.fea │ ├── cv08.fea │ ├── cv09.fea │ ├── cv10.fea │ ├── cv11.fea │ ├── cv12.fea │ ├── dnom.fea │ ├── frac.fea │ ├── locl.fea │ ├── mark.fea │ ├── numr.fea │ ├── onum.fea │ ├── ordn.fea │ ├── sinf.fea │ ├── ss01.fea │ ├── ss02.fea │ ├── ss03.fea │ ├── ss04.fea │ ├── sups.fea │ └── zero.fea ├── uv.lock └── website ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json └── launch.json ├── astro.config.mjs ├── file-linker.mjs ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.svg └── icons │ └── github.svg ├── src ├── blocks │ ├── Glyphs │ │ ├── BetaTag.astro │ │ ├── Glyphs.astro │ │ ├── PreviewRow.astro │ │ └── WeightSlider.astro │ ├── Hero │ │ ├── Hero.astro │ │ ├── InformationColumn.astro │ │ └── ReleaseLinks.astro │ └── Superpowers │ │ ├── FeatureRow.astro │ │ ├── PreviewAligns.astro │ │ ├── PreviewLigatures.astro │ │ ├── PreviewPowerline.astro │ │ ├── PreviewWeight.astro │ │ └── Superpowers.astro ├── components │ ├── Button.astro │ ├── FloatingActions │ │ ├── FloatingAction.astro │ │ ├── FloatingPanel.astro │ │ ├── FloatingToggle.astro │ │ └── index.ts │ ├── GlyphAnimations │ │ ├── AnimatedGlyphs.astro │ │ ├── MagnifyingGlass.astro │ │ └── WavingGlyphs.astro │ ├── LayoutBlock.astro │ ├── Link.astro │ ├── Powerline.astro │ ├── ReleaseLinks.astro │ ├── Slider.astro │ ├── Stack.astro │ ├── TextArea.astro │ ├── Toggle.astro │ └── Typography.astro ├── dom.d.ts ├── env.d.ts ├── layouts │ └── Layout.astro ├── pages │ ├── index.astro │ └── preview.astro ├── stores │ ├── glyphs.ts │ └── superpowers.ts ├── styles │ ├── styles.scss │ └── theme │ │ ├── border-radius.scss │ │ ├── colors.scss │ │ ├── spaces.scss │ │ ├── transitions.scss │ │ └── typography.scss └── utils │ ├── environment.ts │ └── text-animation │ ├── axisLoop.ts │ ├── geometry.ts │ ├── index.ts │ ├── nodes.ts │ ├── renderers │ ├── magnifying-glass.ts │ └── weight.ts │ ├── variants.ts │ └── web-components │ ├── index.ts │ └── waving-glyphs │ ├── index.ts │ ├── wave-animator.ts │ └── waving-glyphs-element.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.github/workflows/qa.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/website_master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.github/workflows/website_master.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | Be awesome for each other 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/SECURITY.md -------------------------------------------------------------------------------- /fonts/otf/Lilex-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-Bold.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-ExtraLightItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-Italic.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-Light.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-LightItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-Medium.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-MediumItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-Regular.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-SemiBold.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-SemiBoldItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-Thin.otf -------------------------------------------------------------------------------- /fonts/otf/Lilex-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/otf/Lilex-ThinItalic.otf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-Italic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-Light.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-Medium.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-Thin.ttf -------------------------------------------------------------------------------- /fonts/ttf/Lilex-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/ttf/Lilex-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/variable/Lilex-Italic[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/variable/Lilex-Italic[wght].ttf -------------------------------------------------------------------------------- /fonts/variable/Lilex[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/variable/Lilex[wght].ttf -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-Bold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-BoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-Italic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-Italic[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-Italic[wght].woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-Light.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-LightItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-Medium.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-MediumItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-Regular.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-Thin.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex-ThinItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Lilex[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/fonts/webfonts/Lilex[wght].woff2 -------------------------------------------------------------------------------- /images/alt_ligatures@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/alt_ligatures@2x.png -------------------------------------------------------------------------------- /images/alternatives@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/alternatives@2x.png -------------------------------------------------------------------------------- /images/arrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/arrows@2x.png -------------------------------------------------------------------------------- /images/character-set@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/character-set@2x.png -------------------------------------------------------------------------------- /images/italics@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/italics@2x.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/main@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/main@2x.png -------------------------------------------------------------------------------- /images/styles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/images/styles@2x.png -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/lefthook.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/ansi_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/ansi_features.py -------------------------------------------------------------------------------- /scripts/changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/changelog.py -------------------------------------------------------------------------------- /scripts/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/generate.py -------------------------------------------------------------------------------- /scripts/lilexgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/__init__.py -------------------------------------------------------------------------------- /scripts/lilexgen/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/config.py -------------------------------------------------------------------------------- /scripts/lilexgen/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/generate.py -------------------------------------------------------------------------------- /scripts/lilexgen/opentype_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/opentype_features/__init__.py -------------------------------------------------------------------------------- /scripts/lilexgen/opentype_features/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/opentype_features/const.py -------------------------------------------------------------------------------- /scripts/lilexgen/opentype_features/features_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/opentype_features/features_loader.py -------------------------------------------------------------------------------- /scripts/lilexgen/opentype_features/ligatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/opentype_features/ligatures.py -------------------------------------------------------------------------------- /scripts/lilexgen/opentype_features/spacers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/lilexgen/opentype_features/spacers.py -------------------------------------------------------------------------------- /scripts/normalize_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/normalize_names.py -------------------------------------------------------------------------------- /scripts/porting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/porting.py -------------------------------------------------------------------------------- /scripts/website_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/scripts/website_env.py -------------------------------------------------------------------------------- /sources/Lilex/Lilex-Italic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/Lilex/Lilex-Italic.glyphs -------------------------------------------------------------------------------- /sources/Lilex/Lilex.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/Lilex/Lilex.glyphs -------------------------------------------------------------------------------- /sources/Lilex/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/Lilex/config.yaml -------------------------------------------------------------------------------- /sources/LilexDuo/LilexDuo.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/LilexDuo/LilexDuo.glyphs -------------------------------------------------------------------------------- /sources/LilexDuo/LilexDuo.patch.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/LilexDuo/LilexDuo.patch.glyphs -------------------------------------------------------------------------------- /sources/LilexDuo/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/LilexDuo/config.yaml -------------------------------------------------------------------------------- /sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/README.md -------------------------------------------------------------------------------- /sources/lilexgen_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/lilexgen_config.yaml -------------------------------------------------------------------------------- /sources/opentype_features/_classes/acc_comb_bottom.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/acc_comb_bottom.cls -------------------------------------------------------------------------------- /sources/opentype_features/_classes/acc_comb_case.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/acc_comb_case.cls -------------------------------------------------------------------------------- /sources/opentype_features/_classes/acc_comb_dflt.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/acc_comb_dflt.cls -------------------------------------------------------------------------------- /sources/opentype_features/_classes/acc_comb_top.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/acc_comb_top.cls -------------------------------------------------------------------------------- /sources/opentype_features/_classes/lca_alt1.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/lca_alt1.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/lca_cyrl_alt1.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/lca_cyrl_alt1.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/lca_cyrl_dflt.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/lca_cyrl_dflt.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/lca_dflt.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/lca_dflt.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/lcg_alt1.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/lcg_alt1.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/lcg_dflt.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/lcg_dflt.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/numbers_dflt.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/numbers_dflt.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/numbers_dnom.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/numbers_dnom.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/numbers_hex.fea: -------------------------------------------------------------------------------- 1 | @numbers_dflt a b c d e f A B C D E F -------------------------------------------------------------------------------- /sources/opentype_features/_classes/numbers_numr.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/numbers_numr.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/numbers_onum.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/numbers_onum.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/numbers_sinf.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/numbers_sinf.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/numbers_sups.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/numbers_sups.fea -------------------------------------------------------------------------------- /sources/opentype_features/_classes/uc_basic.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/_classes/uc_basic.cls -------------------------------------------------------------------------------- /sources/opentype_features/aalt.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/aalt.fea -------------------------------------------------------------------------------- /sources/opentype_features/calt/colon.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/calt/colon.fea -------------------------------------------------------------------------------- /sources/opentype_features/calt/equal-arrows.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/calt/equal-arrows.fea -------------------------------------------------------------------------------- /sources/opentype_features/calt/hyphen-arrows.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/calt/hyphen-arrows.fea -------------------------------------------------------------------------------- /sources/opentype_features/calt/multiply.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/calt/multiply.fea -------------------------------------------------------------------------------- /sources/opentype_features/calt/numbersigns.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/calt/numbersigns.fea -------------------------------------------------------------------------------- /sources/opentype_features/calt/underscores.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/calt/underscores.fea -------------------------------------------------------------------------------- /sources/opentype_features/case.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/case.fea -------------------------------------------------------------------------------- /sources/opentype_features/ccmp.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/ccmp.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv01.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv01.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv02.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv02.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv03.fea: -------------------------------------------------------------------------------- 1 | # Name: Low stem g 2 | 3 | sub g by g.alt02; 4 | -------------------------------------------------------------------------------- /sources/opentype_features/cv04.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv04.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv05.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv05.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv06.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv06.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv07.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv07.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv08.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv08.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv09.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv09.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv10.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv10.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv11.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv11.fea -------------------------------------------------------------------------------- /sources/opentype_features/cv12.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/cv12.fea -------------------------------------------------------------------------------- /sources/opentype_features/dnom.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/dnom.fea -------------------------------------------------------------------------------- /sources/opentype_features/frac.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/frac.fea -------------------------------------------------------------------------------- /sources/opentype_features/locl.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/locl.fea -------------------------------------------------------------------------------- /sources/opentype_features/mark.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/mark.fea -------------------------------------------------------------------------------- /sources/opentype_features/numr.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/numr.fea -------------------------------------------------------------------------------- /sources/opentype_features/onum.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/onum.fea -------------------------------------------------------------------------------- /sources/opentype_features/ordn.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/ordn.fea -------------------------------------------------------------------------------- /sources/opentype_features/sinf.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/sinf.fea -------------------------------------------------------------------------------- /sources/opentype_features/ss01.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/ss01.fea -------------------------------------------------------------------------------- /sources/opentype_features/ss02.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/ss02.fea -------------------------------------------------------------------------------- /sources/opentype_features/ss03.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/ss03.fea -------------------------------------------------------------------------------- /sources/opentype_features/ss04.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/ss04.fea -------------------------------------------------------------------------------- /sources/opentype_features/sups.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/sups.fea -------------------------------------------------------------------------------- /sources/opentype_features/zero.fea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/sources/opentype_features/zero.fea -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/uv.lock -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | -------------------------------------------------------------------------------- /website/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/.vscode/extensions.json -------------------------------------------------------------------------------- /website/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/.vscode/launch.json -------------------------------------------------------------------------------- /website/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/astro.config.mjs -------------------------------------------------------------------------------- /website/file-linker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/file-linker.mjs -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/pnpm-lock.yaml -------------------------------------------------------------------------------- /website/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/public/favicon.svg -------------------------------------------------------------------------------- /website/public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/public/icons/github.svg -------------------------------------------------------------------------------- /website/src/blocks/Glyphs/BetaTag.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Glyphs/BetaTag.astro -------------------------------------------------------------------------------- /website/src/blocks/Glyphs/Glyphs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Glyphs/Glyphs.astro -------------------------------------------------------------------------------- /website/src/blocks/Glyphs/PreviewRow.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Glyphs/PreviewRow.astro -------------------------------------------------------------------------------- /website/src/blocks/Glyphs/WeightSlider.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Glyphs/WeightSlider.astro -------------------------------------------------------------------------------- /website/src/blocks/Hero/Hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Hero/Hero.astro -------------------------------------------------------------------------------- /website/src/blocks/Hero/InformationColumn.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Hero/InformationColumn.astro -------------------------------------------------------------------------------- /website/src/blocks/Hero/ReleaseLinks.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Hero/ReleaseLinks.astro -------------------------------------------------------------------------------- /website/src/blocks/Superpowers/FeatureRow.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Superpowers/FeatureRow.astro -------------------------------------------------------------------------------- /website/src/blocks/Superpowers/PreviewAligns.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Superpowers/PreviewAligns.astro -------------------------------------------------------------------------------- /website/src/blocks/Superpowers/PreviewLigatures.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Superpowers/PreviewLigatures.astro -------------------------------------------------------------------------------- /website/src/blocks/Superpowers/PreviewPowerline.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Superpowers/PreviewPowerline.astro -------------------------------------------------------------------------------- /website/src/blocks/Superpowers/PreviewWeight.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Superpowers/PreviewWeight.astro -------------------------------------------------------------------------------- /website/src/blocks/Superpowers/Superpowers.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/blocks/Superpowers/Superpowers.astro -------------------------------------------------------------------------------- /website/src/components/Button.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/Button.astro -------------------------------------------------------------------------------- /website/src/components/FloatingActions/FloatingAction.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/FloatingActions/FloatingAction.astro -------------------------------------------------------------------------------- /website/src/components/FloatingActions/FloatingPanel.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/FloatingActions/FloatingPanel.astro -------------------------------------------------------------------------------- /website/src/components/FloatingActions/FloatingToggle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/FloatingActions/FloatingToggle.astro -------------------------------------------------------------------------------- /website/src/components/FloatingActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/FloatingActions/index.ts -------------------------------------------------------------------------------- /website/src/components/GlyphAnimations/AnimatedGlyphs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/GlyphAnimations/AnimatedGlyphs.astro -------------------------------------------------------------------------------- /website/src/components/GlyphAnimations/MagnifyingGlass.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/GlyphAnimations/MagnifyingGlass.astro -------------------------------------------------------------------------------- /website/src/components/GlyphAnimations/WavingGlyphs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/GlyphAnimations/WavingGlyphs.astro -------------------------------------------------------------------------------- /website/src/components/LayoutBlock.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/LayoutBlock.astro -------------------------------------------------------------------------------- /website/src/components/Link.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/Link.astro -------------------------------------------------------------------------------- /website/src/components/Powerline.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/Powerline.astro -------------------------------------------------------------------------------- /website/src/components/ReleaseLinks.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/ReleaseLinks.astro -------------------------------------------------------------------------------- /website/src/components/Slider.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/Slider.astro -------------------------------------------------------------------------------- /website/src/components/Stack.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/Stack.astro -------------------------------------------------------------------------------- /website/src/components/TextArea.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/TextArea.astro -------------------------------------------------------------------------------- /website/src/components/Toggle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/Toggle.astro -------------------------------------------------------------------------------- /website/src/components/Typography.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/components/Typography.astro -------------------------------------------------------------------------------- /website/src/dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/dom.d.ts -------------------------------------------------------------------------------- /website/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /website/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/layouts/Layout.astro -------------------------------------------------------------------------------- /website/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/pages/index.astro -------------------------------------------------------------------------------- /website/src/pages/preview.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/pages/preview.astro -------------------------------------------------------------------------------- /website/src/stores/glyphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/stores/glyphs.ts -------------------------------------------------------------------------------- /website/src/stores/superpowers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/stores/superpowers.ts -------------------------------------------------------------------------------- /website/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/styles/styles.scss -------------------------------------------------------------------------------- /website/src/styles/theme/border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/styles/theme/border-radius.scss -------------------------------------------------------------------------------- /website/src/styles/theme/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/styles/theme/colors.scss -------------------------------------------------------------------------------- /website/src/styles/theme/spaces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/styles/theme/spaces.scss -------------------------------------------------------------------------------- /website/src/styles/theme/transitions.scss: -------------------------------------------------------------------------------- 1 | .lilexTheme { 2 | --transition-slow: 0.3s ease-out; 3 | } 4 | -------------------------------------------------------------------------------- /website/src/styles/theme/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/styles/theme/typography.scss -------------------------------------------------------------------------------- /website/src/utils/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/environment.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/axisLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/axisLoop.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/geometry.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/index.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/nodes.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/renderers/magnifying-glass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/renderers/magnifying-glass.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/renderers/weight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/renderers/weight.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/variants.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/web-components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./waving-glyphs"; 2 | -------------------------------------------------------------------------------- /website/src/utils/text-animation/web-components/waving-glyphs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./waving-glyphs-element"; 2 | -------------------------------------------------------------------------------- /website/src/utils/text-animation/web-components/waving-glyphs/wave-animator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/web-components/waving-glyphs/wave-animator.ts -------------------------------------------------------------------------------- /website/src/utils/text-animation/web-components/waving-glyphs/waving-glyphs-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishamyrt/Lilex/HEAD/website/src/utils/text-animation/web-components/waving-glyphs/waving-glyphs-element.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } 4 | --------------------------------------------------------------------------------