carbon / webfonts
Webfonts for Neos
Installs: 0
Dependents: 0
Suggesters: 1
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:neos-carbon
Requires
- neos/neos: ^8.3 || ^9.0
- neos/neos-ui: ^8.3 || ^9.0
This package is auto-updated.
Last update: 2024-12-19 10:26:28 UTC
README
This package provides different web fonts for you Neos project. Used by Litefyr and Carbon.Newsletter
Installation
Add the package in your site package:
composer require --no-update carbon/webfonts
Then run composer update
in your project root.
Add your own fonts
If you want to add your own custom font, you can add your entry under the settings key
Neos.Neos.Ui.frontendConfiguration.CarbonWebfonts
:
Neos: Neos: Ui: frontendConfiguration: CarbonWebfonts: "My Custom Font Name": # If fontWeight is an array, it has multiple fonts, if it is a number it is a fixed font weight (e.g. 400) # if it is a string, it is a range of font weights (e.g. "100 900") fontWeight: [400, 700] # Group can be 'Sans Serif', Serif, Handwriting, Display or Monospace group: "Sans Serif" # The fallback is automatically done by the group name, but if you want to override it, you can set it here fallback: "Helvetica, sans-serif" # If your font is a webfont, please add a css-file with all declartions in it. It has to be in the public folder cssFile: resource://Vendor.Package/Fonts/MyCustomFontName.css
This setting can also be added on a per property basis:
Vendor.Package:Mixin.FontFamily: properties: type: string ui: inspector: editor: "Carbon.Webfonts/FontFamily" editorOptions: allowEmpty: true # Set this to an object just like a font value to use a placeholder font # It takes the same values as a font value, but adding the needed name placeholderFont: name: "Open Sans" fallback: "Helvetica, Arial, sans-serif" # A path to a CSS file with @font-face declarations. # Can be a resource:// or a http(s):// path cssFile: false # This disables the fonts from this package useCarbonWebfonts: false # If set to false, only the font name is stored in the database enableFallback: true fonts: Alumni Sans: # Sets properties for showing in the editor preview. Does not affect saved value. # defaults to fontWeight: 400 and fontStyle: normal display: fontWeight: 500 fontStyle: italic group: Sans Serif cssFile: resource://Vendor.Package/Fonts/Alumni-Sans.css fontWeight: 100 900 fallback: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji' Atkinson Hyperlegible: group: Sans Serif cssFile: resource://Vendor.Package/Fonts/Atkinson-Hyperlegible.css fontWeight: - 400 - 700 fallback: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji' Impact: group: Sans Serif fontWeight: - 400 - 700 fallback: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'