@carbon/themes 11.71.0 → 11.72.0-rc.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@carbon/themes",
3
3
  "description": "Themes for applying color in the Carbon Design System",
4
- "version": "11.71.0",
4
+ "version": "11.72.0-rc.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -32,16 +32,16 @@
32
32
  "postinstall": "ibmtelemetry --config=telemetry.yml"
33
33
  },
34
34
  "dependencies": {
35
- "@carbon/colors": "^11.50.0",
36
- "@carbon/layout": "^11.51.0",
37
- "@carbon/type": "^11.57.0",
35
+ "@carbon/colors": "^11.51.0-rc.0",
36
+ "@carbon/layout": "^11.52.0-rc.0",
37
+ "@carbon/type": "^11.58.0-rc.0",
38
38
  "@ibm/telemetry-js": "^1.5.0",
39
39
  "color": "^4.0.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@babel/node": "^7.27.1",
43
43
  "@babel/preset-env": "^7.27.2",
44
- "@carbon/cli": "^11.42.0",
44
+ "@carbon/cli": "^11.43.0-rc.0",
45
45
  "@carbon/cli-reporter": "^10.8.0",
46
46
  "@carbon/scss-generator": "^10.20.0",
47
47
  "@carbon/test-utils": "^10.41.0",
@@ -52,5 +52,5 @@
52
52
  "rimraf": "^6.0.1"
53
53
  },
54
54
  "sideEffects": false,
55
- "gitHead": "937649543e9cc6af9dfb6b53a2adb76760bca986"
55
+ "gitHead": "20a00767571db791cac99d499527e2f995ead478"
56
56
  }
@@ -175,6 +175,7 @@ $white: (
175
175
  syntax-definition: #00539a,
176
176
  syntax-definition-keyword: #00539a,
177
177
  syntax-definition-operator: #00539a,
178
+ syntax-deleted: #ffd7d9,
178
179
  syntax-deref-operator: #343a3f,
179
180
  syntax-doc-comment: #198038,
180
181
  syntax-doc-string: #161616,
@@ -190,6 +191,7 @@ $white: (
190
191
  syntax-heading-4: #00539a,
191
192
  syntax-heading-5: #00539a,
192
193
  syntax-heading-6: #00539a,
194
+ syntax-inserted: #a7f0ba,
193
195
  syntax-integer: #198038,
194
196
  syntax-invalid: #da1e28,
195
197
  syntax-keyword: #0f62fe,
@@ -417,6 +419,7 @@ $g10: (
417
419
  syntax-definition: #00539a,
418
420
  syntax-definition-keyword: #00539a,
419
421
  syntax-definition-operator: #00539a,
422
+ syntax-deleted: #ffd7d9,
420
423
  syntax-deref-operator: #343a3f,
421
424
  syntax-doc-comment: #198038,
422
425
  syntax-doc-string: #161616,
@@ -432,6 +435,7 @@ $g10: (
432
435
  syntax-heading-4: #00539a,
433
436
  syntax-heading-5: #00539a,
434
437
  syntax-heading-6: #00539a,
438
+ syntax-inserted: #a7f0ba,
435
439
  syntax-integer: #198038,
436
440
  syntax-invalid: #da1e28,
437
441
  syntax-keyword: #0f62fe,
@@ -659,6 +663,7 @@ $g90: (
659
663
  syntax-definition: #33b1ff,
660
664
  syntax-definition-keyword: #33b1ff,
661
665
  syntax-definition-operator: #33b1ff,
666
+ syntax-deleted: #a2191f,
662
667
  syntax-deref-operator: #e0e0e0,
663
668
  syntax-doc-comment: #42be65,
664
669
  syntax-doc-string: #f4f4f4,
@@ -674,6 +679,7 @@ $g90: (
674
679
  syntax-heading-4: #33b1ff,
675
680
  syntax-heading-5: #33b1ff,
676
681
  syntax-heading-6: #33b1ff,
682
+ syntax-inserted: #198038,
677
683
  syntax-integer: #6fdc8c,
678
684
  syntax-invalid: #fa4d56,
679
685
  syntax-keyword: #4589ff,
@@ -901,6 +907,7 @@ $g100: (
901
907
  syntax-definition: #33b1ff,
902
908
  syntax-definition-keyword: #33b1ff,
903
909
  syntax-definition-operator: #33b1ff,
910
+ syntax-deleted: #a2191f,
904
911
  syntax-deref-operator: #e0e0e0,
905
912
  syntax-doc-comment: #42be65,
906
913
  syntax-doc-string: #f4f4f4,
@@ -916,6 +923,7 @@ $g100: (
916
923
  syntax-heading-4: #33b1ff,
917
924
  syntax-heading-5: #33b1ff,
918
925
  syntax-heading-6: #33b1ff,
926
+ syntax-inserted: #198038,
919
927
  syntax-integer: #6fdc8c,
920
928
  syntax-invalid: #fa4d56,
921
929
  syntax-keyword: #4589ff,
@@ -562,6 +562,12 @@ $syntax-local: _get('syntax-local') !default;
562
562
  /// The CSS Custom Property for the `syntax-special` token
563
563
  $syntax-special: _get('syntax-special') !default;
564
564
 
565
+ /// The CSS Custom Property for the `syntax-inserted` token
566
+ $syntax-inserted: _get('syntax-inserted') !default;
567
+
568
+ /// The CSS Custom Property for the `syntax-deleted` token
569
+ $syntax-deleted: _get('syntax-deleted') !default;
570
+
565
571
  /// The CSS Custom Property for the `ai-popover-background` token
566
572
  $ai-popover-background: _get('ai-popover-background') !default;
567
573
 
package/src/g10.js CHANGED
@@ -34,12 +34,14 @@ import {
34
34
  // Support
35
35
  blue50,
36
36
  cyan70,
37
+ green20,
37
38
  green40,
38
39
  green50,
39
40
  green60,
40
41
  yellow30,
41
42
  yellow60,
42
43
  orange40,
44
+ red20,
43
45
  red50,
44
46
  red60,
45
47
  purple40,
@@ -306,6 +308,8 @@ export const syntaxFunction = yellow60;
306
308
  export const syntaxStandard = blue60;
307
309
  export const syntaxLocal = blue60;
308
310
  export const syntaxSpecial = blue60;
311
+ export const syntaxInserted = green20;
312
+ export const syntaxDeleted = red20;
309
313
 
310
314
  //// AI - Experimental (Use at your own risk)
311
315
  //// Phase 2 - new \\\\
package/src/g100.js CHANGED
@@ -36,11 +36,13 @@ import {
36
36
  green30,
37
37
  green40,
38
38
  green50,
39
+ green60,
39
40
  yellow30,
40
41
  orange40,
41
42
  red40,
42
43
  red50,
43
44
  red60,
45
+ red70,
44
46
  purple40,
45
47
  purple50,
46
48
  purple60,
@@ -307,6 +309,8 @@ export const syntaxFunction = yellow30;
307
309
  export const syntaxStandard = blue50;
308
310
  export const syntaxLocal = blue30;
309
311
  export const syntaxSpecial = blue50;
312
+ export const syntaxInserted = green60;
313
+ export const syntaxDeleted = red70;
310
314
 
311
315
  //// AI - Experimental (Use at your own risk)
312
316
  //// Phase 2 - new \\\\
package/src/g90.js CHANGED
@@ -33,16 +33,18 @@ import {
33
33
  // Support
34
34
  blue30,
35
35
  blue50,
36
- green30,
37
36
  cyan40,
37
+ green30,
38
38
  green40,
39
39
  green50,
40
+ green60,
40
41
  yellow30,
41
42
  orange40,
42
43
  red30,
43
44
  red40,
44
45
  red50,
45
46
  red60,
47
+ red70,
46
48
  purple40,
47
49
  purple50,
48
50
  purple60,
@@ -309,6 +311,8 @@ export const syntaxFunction = yellow30;
309
311
  export const syntaxStandard = blue50;
310
312
  export const syntaxLocal = blue30;
311
313
  export const syntaxSpecial = blue50;
314
+ export const syntaxInserted = green60;
315
+ export const syntaxDeleted = red70;
312
316
 
313
317
  //// AI - Experimental (Use at your own risk)
314
318
  //// Phase 2 - new \\\\
@@ -441,6 +441,8 @@ export const syntaxHighlight = TokenGroup.create({
441
441
  'syntax-standard',
442
442
  'syntax-local',
443
443
  'syntax-special',
444
+ 'syntax-inserted',
445
+ 'syntax-deleted',
444
446
  ],
445
447
  });
446
448
 
package/src/white.js CHANGED
@@ -34,12 +34,14 @@ import {
34
34
  // Support
35
35
  blue50,
36
36
  cyan70,
37
+ green20,
37
38
  green40,
38
39
  green50,
39
40
  green60,
40
41
  yellow30,
41
42
  yellow60,
42
43
  orange40,
44
+ red20,
43
45
  red50,
44
46
  red60,
45
47
  purple40,
@@ -306,6 +308,8 @@ export const syntaxFunction = yellow60;
306
308
  export const syntaxStandard = blue60;
307
309
  export const syntaxLocal = blue60;
308
310
  export const syntaxSpecial = blue60;
311
+ export const syntaxInserted = green20;
312
+ export const syntaxDeleted = red20;
309
313
 
310
314
  //// AI - Experimental (Use at your own risk)
311
315
  //// Phase 2 - new \\\\