diff --git a/designTokens/index.js b/designTokens/index.js index 417ac835..f6c80747 100644 --- a/designTokens/index.js +++ b/designTokens/index.js @@ -4,5 +4,6 @@ module.exports = { iconSize: require('./icon-size'), shadow: require('./shadow'), spacing: require('./spacing'), - touch: require('./touch') + touch: require('./touch'), + typo: require('./typo') }; diff --git a/designTokens/typo.js b/designTokens/typo.js new file mode 100644 index 00000000..21be8661 --- /dev/null +++ b/designTokens/typo.js @@ -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 */