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.js
CHANGED
|
@@ -1145,6 +1145,13 @@ var LightTheme = {
|
|
|
1145
1145
|
roundness: 8,
|
|
1146
1146
|
version: 3,
|
|
1147
1147
|
colors: {
|
|
1148
|
+
primary: blue.BLUE100,
|
|
1149
|
+
background: white.WHITE100,
|
|
1150
|
+
card: ink.INK100,
|
|
1151
|
+
text: ink.INK100,
|
|
1152
|
+
border: ink.INK40,
|
|
1153
|
+
gray: ink.INK60,
|
|
1154
|
+
backgroundLight: ink.INK10,
|
|
1148
1155
|
elevation: {
|
|
1149
1156
|
level0: "transparent",
|
|
1150
1157
|
level1: "rgb(247, 243, 249)",
|
|
@@ -1292,6 +1299,13 @@ var LightTheme = {
|
|
|
1292
1299
|
};
|
|
1293
1300
|
|
|
1294
1301
|
var DarkTheme = __assign(__assign({}, LightTheme), { dark: true, mode: "adaptive", version: 3, colors: {
|
|
1302
|
+
primary: blue.BLUE100,
|
|
1303
|
+
background: white.WHITE100,
|
|
1304
|
+
card: ink.INK100,
|
|
1305
|
+
text: ink.INK100,
|
|
1306
|
+
border: ink.INK40,
|
|
1307
|
+
gray: ink.INK60,
|
|
1308
|
+
backgroundLight: ink.INK10,
|
|
1295
1309
|
elevation: {
|
|
1296
1310
|
level0: "transparent",
|
|
1297
1311
|
level1: "rgb(37, 35, 42)",
|