@notabene/javascript-sdk 2.14.1 → 2.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1043,10 +1043,11 @@ const notabene = new Notabene({
1043
1043
  nodeUrl: 'https://api.notabene.id',
1044
1044
  authToken: 'YOUR_CUSTOMER_TOKEN',
1045
1045
  theme: {
1046
- mode: 'light', // 'light', 'dark'
1047
- primaryColor: '#0a852d',
1048
- secondaryColor: '#f5f7fa',
1049
- fontFamily: 'Montserrat' // Google Fonts Supported
1046
+ mode: 'light', // Color mode: 'light' or 'dark'
1047
+ primaryColor: '#0a852d', // Main brand color (buttons, highlights, accents)
1048
+ primaryForeground: '#000000', // Text/icon color displayed on top of primaryColor
1049
+ backgroundColor: '#ffffff', // Base background color for the component
1050
+ fontFamily: 'Montserrat' // Font family (supports Google Fonts)
1050
1051
  }
1051
1052
  });
1052
1053
  ```