-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: is adding structure for font families
- Loading branch information
Marius Bleuer
committed
Jul 28, 2021
1 parent
7ebdfa0
commit de5bad0
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* eslint-disable sort-keys */ | ||
|
||
module.exports = { | ||
fontFamily: { | ||
fallback: { | ||
value: '\'Helvetica Neue\', Helvetica, Arial, sans-serif' | ||
}, | ||
sbbRoman: { | ||
value: '\'SBBWeb Roman\', {typo.fontFamily.fallback.value}' | ||
}, | ||
sbbBold: { | ||
value: '\'SBBWeb Bold\', {typo.fontFamily.fallback.value}' | ||
}, | ||
sbbLight: { | ||
value: '\'SBBWeb Light\', {typo.fontFamily.fallback.value}' | ||
}, | ||
sbbUltraLight: { | ||
value: '\'SBBWeb Ultralight\', {typo.fontFamily.fallback.value}' | ||
}, | ||
sbbThin: { | ||
value: '\'SBBWeb Thin\', {typo.fontFamily.fallback.value}' | ||
}, | ||
i18n: { | ||
traditionalChinese: { | ||
value: '\'Example for possible i18n structure\'' | ||
} | ||
} | ||
} | ||
}; | ||
|
||
/* eslint-enable sort-keys */ |