sapo-components-ui-rn 1.0.21 → 1.0.22
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/dist/index.esm.js +14 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +19 -12
- package/package.json +1 -1
- package/src/styles/themes/DarkTheme.tsx +7 -0
- package/src/styles/themes/LightTheme.tsx +7 -0
- package/src/types.ts +19 -13
package/dist/index.esm.js
CHANGED
|
@@ -1112,6 +1112,13 @@ var LightTheme = {
|
|
|
1112
1112
|
roundness: 8,
|
|
1113
1113
|
version: 3,
|
|
1114
1114
|
colors: {
|
|
1115
|
+
primary: blue.BLUE100,
|
|
1116
|
+
background: white.WHITE100,
|
|
1117
|
+
card: ink.INK100,
|
|
1118
|
+
text: ink.INK100,
|
|
1119
|
+
border: ink.INK40,
|
|
1120
|
+
gray: ink.INK60,
|
|
1121
|
+
backgroundLight: ink.INK10,
|
|
1115
1122
|
elevation: {
|
|
1116
1123
|
level0: "transparent",
|
|
1117
1124
|
level1: "rgb(247, 243, 249)",
|
|
@@ -1259,6 +1266,13 @@ var LightTheme = {
|
|
|
1259
1266
|
};
|
|
1260
1267
|
|
|
1261
1268
|
var DarkTheme = __assign(__assign({}, LightTheme), { dark: true, mode: "adaptive", version: 3, colors: {
|
|
1269
|
+
primary: blue.BLUE100,
|
|
1270
|
+
background: white.WHITE100,
|
|
1271
|
+
card: ink.INK100,
|
|
1272
|
+
text: ink.INK100,
|
|
1273
|
+
border: ink.INK40,
|
|
1274
|
+
gray: ink.INK60,
|
|
1275
|
+
backgroundLight: ink.INK10,
|
|
1262
1276
|
elevation: {
|
|
1263
1277
|
level0: "transparent",
|
|
1264
1278
|
level1: "rgb(37, 35, 42)",
|