@blocklet/theme 3.2.17 → 3.2.19

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/cjs/index.js CHANGED
@@ -242,10 +242,10 @@ const BLOCKLET_THEME_LIGHT = {
242
242
  dark: "#e7000b"
243
243
  },
244
244
  warning: {
245
- main: "#ff6900",
245
+ main: "#ff9300",
246
246
  contrastText: "#fff",
247
- light: "#ff8904",
248
- dark: "#f54900"
247
+ light: "#ffa833",
248
+ dark: "#b26600"
249
249
  },
250
250
  info: {
251
251
  main: "#2b7fff",
@@ -254,10 +254,10 @@ const BLOCKLET_THEME_LIGHT = {
254
254
  dark: "#155dfc"
255
255
  },
256
256
  success: {
257
- main: "#00c950",
257
+ main: "#28A948",
258
258
  contrastText: "#fff",
259
- light: "#05df72",
260
- dark: "#00a63e"
259
+ light: "#53ba6c",
260
+ dark: "#1c7632"
261
261
  },
262
262
  grey: {
263
263
  "50": "#fafafa",
@@ -559,10 +559,10 @@ const BLOCKLET_THEME_DARK = mergeThemeOptions(BLOCKLET_THEME_LIGHT, {
559
559
  dark: "#e7000b"
560
560
  },
561
561
  warning: {
562
- main: "#ff8904",
562
+ main: "#FFAE00",
563
563
  contrastText: "#121212",
564
- light: "#ffa644",
565
- dark: "#f54900"
564
+ light: "#ffbe33",
565
+ dark: "#b27900"
566
566
  },
567
567
  info: {
568
568
  main: "#51a2ff",
@@ -571,10 +571,10 @@ const BLOCKLET_THEME_DARK = mergeThemeOptions(BLOCKLET_THEME_LIGHT, {
571
571
  dark: "#1570e5"
572
572
  },
573
573
  success: {
574
- main: "#05df72",
574
+ main: "#00AD3A",
575
575
  contrastText: "#121212",
576
- light: "#56e799",
577
- dark: "#00b24a"
576
+ light: "#33bd61",
577
+ dark: "#007928"
578
578
  },
579
579
  grey: {
580
580
  "50": "#18181b",
package/dist/es/index.js CHANGED
@@ -240,10 +240,10 @@ const BLOCKLET_THEME_LIGHT = {
240
240
  dark: "#e7000b"
241
241
  },
242
242
  warning: {
243
- main: "#ff6900",
243
+ main: "#ff9300",
244
244
  contrastText: "#fff",
245
- light: "#ff8904",
246
- dark: "#f54900"
245
+ light: "#ffa833",
246
+ dark: "#b26600"
247
247
  },
248
248
  info: {
249
249
  main: "#2b7fff",
@@ -252,10 +252,10 @@ const BLOCKLET_THEME_LIGHT = {
252
252
  dark: "#155dfc"
253
253
  },
254
254
  success: {
255
- main: "#00c950",
255
+ main: "#28A948",
256
256
  contrastText: "#fff",
257
- light: "#05df72",
258
- dark: "#00a63e"
257
+ light: "#53ba6c",
258
+ dark: "#1c7632"
259
259
  },
260
260
  grey: {
261
261
  "50": "#fafafa",
@@ -557,10 +557,10 @@ const BLOCKLET_THEME_DARK = mergeThemeOptions(BLOCKLET_THEME_LIGHT, {
557
557
  dark: "#e7000b"
558
558
  },
559
559
  warning: {
560
- main: "#ff8904",
560
+ main: "#FFAE00",
561
561
  contrastText: "#121212",
562
- light: "#ffa644",
563
- dark: "#f54900"
562
+ light: "#ffbe33",
563
+ dark: "#b27900"
564
564
  },
565
565
  info: {
566
566
  main: "#51a2ff",
@@ -569,10 +569,10 @@ const BLOCKLET_THEME_DARK = mergeThemeOptions(BLOCKLET_THEME_LIGHT, {
569
569
  dark: "#1570e5"
570
570
  },
571
571
  success: {
572
- main: "#05df72",
572
+ main: "#00AD3A",
573
573
  contrastText: "#121212",
574
- light: "#56e799",
575
- dark: "#00b24a"
574
+ light: "#33bd61",
575
+ dark: "#007928"
576
576
  },
577
577
  grey: {
578
578
  "50": "#18181b",
@@ -2,6 +2,7 @@ import { Theme, ThemeOptions, BlockletThemeMeta } from './types';
2
2
  export type { Theme, ThemeOptions, BlockletThemeMeta };
3
3
  export declare const DEFAULT_FONTS: string[];
4
4
  /**
5
+ * Blocklet Base Theme
5
6
  * figma: https://www.figma.com/file/1qHyMF137EXOQpSFVByszG/UX-Library?node-id=295%3A1518
6
7
  */
7
8
  export declare const BLOCKLET_THEME_LIGHT: ThemeOptions;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.2.17",
6
+ "version": "3.2.19",
7
7
  "description": "A preset MUI-based theme configuration designed for use with Blocklet.",
8
8
  "main": "dist/cjs/index.js",
9
9
  "module": "dist/es/index.js",
@@ -42,5 +42,5 @@
42
42
  "ts-jest": "^29.4.0",
43
43
  "typescript": "~5.5.4"
44
44
  },
45
- "gitHead": "5f9c8a00065316075847d5b5e5a56874f0929f6e"
45
+ "gitHead": "8439c6a0c022c3fab219191ff035d737c422f3ff"
46
46
  }