@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.cjs
CHANGED
|
@@ -12514,8 +12514,10 @@ var themeBase = {
|
|
|
12514
12514
|
info: { main: "#1976d2", dark: "#1565c0", light: "#42a5f5", contrastText: "#ffffff" }
|
|
12515
12515
|
}
|
|
12516
12516
|
};
|
|
12517
|
-
var themeLight = styles.createTheme(
|
|
12517
|
+
var themeLight = styles.createTheme({
|
|
12518
|
+
...themeBase,
|
|
12518
12519
|
palette: {
|
|
12520
|
+
...themeBase.palette,
|
|
12519
12521
|
mode: "light",
|
|
12520
12522
|
primary: { main: "#1976d2", dark: "#1565c0", light: "#42a5f5", contrastText: "#ffffff" },
|
|
12521
12523
|
secondary: { main: "#6b7280", dark: "#4b5563", light: "#9ca3af", contrastText: "#ffffff" },
|
|
@@ -12523,8 +12525,10 @@ var themeLight = styles.createTheme(themeBase, {
|
|
|
12523
12525
|
background: { default: "#ffffff", paper: "#f5f5f5" }
|
|
12524
12526
|
}
|
|
12525
12527
|
});
|
|
12526
|
-
var themeDark = styles.createTheme(
|
|
12528
|
+
var themeDark = styles.createTheme({
|
|
12529
|
+
...themeBase,
|
|
12527
12530
|
palette: {
|
|
12531
|
+
...themeBase.palette,
|
|
12528
12532
|
mode: "dark",
|
|
12529
12533
|
primary: { main: "#90caf9", dark: "#42a5f5", light: "#bbdefb", contrastText: "#0d1b2a" },
|
|
12530
12534
|
secondary: { main: "#9ca3af", dark: "#6b7280", light: "#d1d5db", contrastText: "#111827" },
|
|
@@ -12532,8 +12536,10 @@ var themeDark = styles.createTheme(themeBase, {
|
|
|
12532
12536
|
background: { default: "#121212", paper: "#1e1e1e" }
|
|
12533
12537
|
}
|
|
12534
12538
|
});
|
|
12535
|
-
var themeHighContrast = styles.createTheme(
|
|
12539
|
+
var themeHighContrast = styles.createTheme({
|
|
12540
|
+
...themeBase,
|
|
12536
12541
|
palette: {
|
|
12542
|
+
...themeBase.palette,
|
|
12537
12543
|
mode: "dark",
|
|
12538
12544
|
primary: { main: "#ffffff", dark: "#e0e0e0", light: "#ffffff", contrastText: "#000000" },
|
|
12539
12545
|
secondary: { main: "#ffff00", dark: "#cccc00", light: "#ffff66", contrastText: "#000000" },
|