@@ -16,6 +16,7 @@ export const FONT_FAMILIES = {
1616 [ BRANDS . BLAU ] : "SF Pro Text" ,
1717 [ BRANDS . TU ] : "Telefonica Sans" ,
1818 [ BRANDS . ESIMFLAG ] : "On Air" ,
19+ [ BRANDS . UNBRANDED ] : "Telefonica Sans" ,
1920} ;
2021
2122export const ICON_SETS = {
@@ -27,6 +28,7 @@ export const ICON_SETS = {
2728 [ BRANDS . BLAU ] : "Blau" ,
2829 [ BRANDS . TU ] : "Default" ,
2930 [ BRANDS . ESIMFLAG ] : "Default" ,
31+ [ BRANDS . UNBRANDED ] : "Default" ,
3032} ;
3133
3234export const BRAND_NAMES = {
@@ -38,11 +40,12 @@ export const BRAND_NAMES = {
3840 [ BRANDS . BLAU ] : "Blau" ,
3941 [ BRANDS . TU ] : "TU" ,
4042 [ BRANDS . ESIMFLAG ] : "eSimFLAG" ,
43+ [ BRANDS . UNBRANDED ] : "Unbranded" ,
4144} ;
4245
4346export const getPaletteVariables = (
4447 jsonData ,
45- brand
48+ brand ,
4649) => [
4750 {
4851 variables : jsonData [ brand ] ?. palette || [ ] ,
@@ -55,7 +58,7 @@ export const getPaletteVariables = (
5558
5659export const getConstantVariables = (
5760 jsonData ,
58- brand
61+ brand ,
5962) => [
6063 {
6164 variables : jsonData [ brand ] ?. light || [ ] ,
@@ -75,7 +78,7 @@ export const getConstantVariables = (
7578
7679export const getNonColorVariables = (
7780 jsonData ,
78- brand
81+ brand ,
7982) => [
8083 {
8184 variables : jsonData [ brand ] ?. radius || [ ] ,
0 commit comments