@szymonpiatek/designsystem 0.0.9 → 0.0.10
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.cjs +9 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12469,8 +12469,10 @@ var themeBase = {
|
|
|
12469
12469
|
info: { main: "#1976d2", dark: "#1565c0", light: "#42a5f5", contrastText: "#ffffff" }
|
|
12470
12470
|
}
|
|
12471
12471
|
};
|
|
12472
|
-
var themeLight = createTheme(
|
|
12472
|
+
var themeLight = createTheme({
|
|
12473
|
+
...themeBase,
|
|
12473
12474
|
palette: {
|
|
12475
|
+
...themeBase.palette,
|
|
12474
12476
|
mode: "light",
|
|
12475
12477
|
primary: { main: "#1976d2", dark: "#1565c0", light: "#42a5f5", contrastText: "#ffffff" },
|
|
12476
12478
|
secondary: { main: "#6b7280", dark: "#4b5563", light: "#9ca3af", contrastText: "#ffffff" },
|
|
@@ -12478,8 +12480,10 @@ var themeLight = createTheme(themeBase, {
|
|
|
12478
12480
|
background: { default: "#ffffff", paper: "#f5f5f5" }
|
|
12479
12481
|
}
|
|
12480
12482
|
});
|
|
12481
|
-
var themeDark = createTheme(
|
|
12483
|
+
var themeDark = createTheme({
|
|
12484
|
+
...themeBase,
|
|
12482
12485
|
palette: {
|
|
12486
|
+
...themeBase.palette,
|
|
12483
12487
|
mode: "dark",
|
|
12484
12488
|
primary: { main: "#90caf9", dark: "#42a5f5", light: "#bbdefb", contrastText: "#0d1b2a" },
|
|
12485
12489
|
secondary: { main: "#9ca3af", dark: "#6b7280", light: "#d1d5db", contrastText: "#111827" },
|
|
@@ -12487,8 +12491,10 @@ var themeDark = createTheme(themeBase, {
|
|
|
12487
12491
|
background: { default: "#121212", paper: "#1e1e1e" }
|
|
12488
12492
|
}
|
|
12489
12493
|
});
|
|
12490
|
-
var themeHighContrast = createTheme(
|
|
12494
|
+
var themeHighContrast = createTheme({
|
|
12495
|
+
...themeBase,
|
|
12491
12496
|
palette: {
|
|
12497
|
+
...themeBase.palette,
|
|
12492
12498
|
mode: "dark",
|
|
12493
12499
|
primary: { main: "#ffffff", dark: "#e0e0e0", light: "#ffffff", contrastText: "#000000" },
|
|
12494
12500
|
secondary: { main: "#ffff00", dark: "#cccc00", light: "#ffff66", contrastText: "#000000" },
|