@payfit/unity-themes 2.67.19 → 2.67.21
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/README.md +4 -4
- package/dist/css/unity.css +17 -8
- package/dist/esm/scripts/formats/processors/gradient-processor.d.ts +8 -0
- package/dist/esm/scripts/transforms/gradient.d.ts +4 -0
- package/package.json +3 -3
- package/src/agent-references/tokens-catalog.json +81 -32
- package/tokens/legacy/colors.json +4 -4
- package/tokens/legacy/gradients.json +22 -0
- package/tokens/rebrand/colors.json +4 -4
- package/tokens/rebrand/gradients.json +22 -0
package/README.md
CHANGED
|
@@ -11,8 +11,8 @@ Install and configure this package by following these steps:
|
|
|
11
11
|
1. **Install the package and dependencies**
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
pnpm add tailwindcss @fontsource/{inter,source-serif-4}
|
|
15
|
+
pnpm add @payfit/unity-themes
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
2. **Set up TailwindCSS in your project**
|
|
@@ -109,10 +109,10 @@ tokens/
|
|
|
109
109
|
|
|
110
110
|
```bash
|
|
111
111
|
# Build the package
|
|
112
|
-
|
|
112
|
+
pnpm nx run unity-themes:build
|
|
113
113
|
|
|
114
114
|
# Run tests
|
|
115
|
-
|
|
115
|
+
pnpm nx run unity-themes:test
|
|
116
116
|
```
|
|
117
117
|
|
|
118
118
|
## How to release manually
|
package/dist/css/unity.css
CHANGED
|
@@ -392,19 +392,19 @@
|
|
|
392
392
|
--uy-color-surface-decorative-teal: var(--uy-color-teal-l6);
|
|
393
393
|
--uy-color-surface-decorative-teal-high: var(--uy-color-teal-l9);
|
|
394
394
|
--uy-color-surface-decorative-teal-low: var(--uy-color-teal-l3);
|
|
395
|
-
--uy-color-surface-decorative-teal-lowest: var(--uy-color-teal-
|
|
395
|
+
--uy-color-surface-decorative-teal-lowest: var(--uy-color-teal-l1);
|
|
396
396
|
--uy-color-surface-decorative-purple-high: var(--uy-color-purple-l9);
|
|
397
397
|
--uy-color-surface-decorative-purple: var(--uy-color-purple-l6);
|
|
398
398
|
--uy-color-surface-decorative-purple-low: var(--uy-color-purple-l3);
|
|
399
|
-
--uy-color-surface-decorative-purple-lowest: var(--uy-color-purple-
|
|
399
|
+
--uy-color-surface-decorative-purple-lowest: var(--uy-color-purple-l1);
|
|
400
400
|
--uy-color-surface-decorative-plum: var(--uy-color-plum-l6);
|
|
401
401
|
--uy-color-surface-decorative-plum-high: var(--uy-color-plum-l9);
|
|
402
402
|
--uy-color-surface-decorative-plum-low: var(--uy-color-plum-l3);
|
|
403
|
-
--uy-color-surface-decorative-plum-lowest: var(--uy-color-plum-
|
|
403
|
+
--uy-color-surface-decorative-plum-lowest: var(--uy-color-plum-l1);
|
|
404
404
|
--uy-color-surface-decorative-orange: var(--uy-color-orange-l6);
|
|
405
405
|
--uy-color-surface-decorative-orange-high: var(--uy-color-orange-l9);
|
|
406
406
|
--uy-color-surface-decorative-orange-low: var(--uy-color-orange-l3);
|
|
407
|
-
--uy-color-surface-decorative-orange-lowest: var(--uy-color-orange-
|
|
407
|
+
--uy-color-surface-decorative-orange-lowest: var(--uy-color-orange-l1);
|
|
408
408
|
--uy-color-content-primary: var(--uy-color-blue-l6);
|
|
409
409
|
--uy-color-content-primary-enabled: var(--uy-color-blue-l7);
|
|
410
410
|
--uy-color-content-primary-hover: var(--uy-color-blue-l10);
|
|
@@ -539,6 +539,8 @@
|
|
|
539
539
|
--uy-color-border-inverted-high: var(--uy-color-grayscale-l0);
|
|
540
540
|
--uy-color-utility-focus-ring: var(--uy-color-blue-l4);
|
|
541
541
|
--uy-color-utility-inverted-focus-ring: var(--uy-color-yellow-l4);
|
|
542
|
+
--uy-gradient-payfit-ai:
|
|
543
|
+
var(--uy-color-yellow-l5) 0%, var(--uy-color-plum-l5) 50%, var(--uy-color-blue-l4) 100%; /** Gradients for Payfit AI effects and components */
|
|
542
544
|
--uy-shadow-100: 0px 1px 4px 1px var(--uy-color-utility-shadow-100);
|
|
543
545
|
--uy-shadow-200: 0px 2px 8px 1px var(--uy-color-utility-shadow-200);
|
|
544
546
|
--uy-shadow-300: 0px 5px 10px 1px var(--uy-color-utility-shadow-300);
|
|
@@ -955,19 +957,19 @@
|
|
|
955
957
|
--uy-color-surface-decorative-teal: var(--uy-color-teal-l6);
|
|
956
958
|
--uy-color-surface-decorative-teal-high: var(--uy-color-teal-l9);
|
|
957
959
|
--uy-color-surface-decorative-teal-low: var(--uy-color-teal-l3);
|
|
958
|
-
--uy-color-surface-decorative-teal-lowest: var(--uy-color-teal-
|
|
960
|
+
--uy-color-surface-decorative-teal-lowest: var(--uy-color-teal-l1);
|
|
959
961
|
--uy-color-surface-decorative-purple-high: var(--uy-color-purple-l9);
|
|
960
962
|
--uy-color-surface-decorative-purple: var(--uy-color-purple-l6);
|
|
961
963
|
--uy-color-surface-decorative-purple-low: var(--uy-color-purple-l3);
|
|
962
|
-
--uy-color-surface-decorative-purple-lowest: var(--uy-color-purple-
|
|
964
|
+
--uy-color-surface-decorative-purple-lowest: var(--uy-color-purple-l1);
|
|
963
965
|
--uy-color-surface-decorative-plum: var(--uy-color-plum-l6);
|
|
964
966
|
--uy-color-surface-decorative-plum-high: var(--uy-color-plum-l9);
|
|
965
967
|
--uy-color-surface-decorative-plum-low: var(--uy-color-plum-l3);
|
|
966
|
-
--uy-color-surface-decorative-plum-lowest: var(--uy-color-plum-
|
|
968
|
+
--uy-color-surface-decorative-plum-lowest: var(--uy-color-plum-l1);
|
|
967
969
|
--uy-color-surface-decorative-orange: var(--uy-color-orange-l6);
|
|
968
970
|
--uy-color-surface-decorative-orange-high: var(--uy-color-orange-l9);
|
|
969
971
|
--uy-color-surface-decorative-orange-low: var(--uy-color-orange-l3);
|
|
970
|
-
--uy-color-surface-decorative-orange-lowest: var(--uy-color-orange-
|
|
972
|
+
--uy-color-surface-decorative-orange-lowest: var(--uy-color-orange-l1);
|
|
971
973
|
--uy-color-content-primary: var(--uy-color-plum-l6);
|
|
972
974
|
--uy-color-content-primary-enabled: var(--uy-color-plum-l8);
|
|
973
975
|
--uy-color-content-primary-hover: var(--uy-color-plum-l9);
|
|
@@ -1109,6 +1111,8 @@
|
|
|
1109
1111
|
--uy-color-border-inverted-high: var(--uy-color-grayscale-l2);
|
|
1110
1112
|
--uy-color-utility-focus-ring: var(--uy-color-blue-l7);
|
|
1111
1113
|
--uy-color-utility-inverted-focus-ring: var(--uy-color-yellow-l4);
|
|
1114
|
+
--uy-gradient-payfit-ai:
|
|
1115
|
+
var(--uy-color-yellow-l5) 0%, var(--uy-color-plum-l5) 50%, var(--uy-color-blue-l4) 100%; /** Gradients for Payfit AI effects and components */
|
|
1112
1116
|
--uy-shadow-100: 0px 1px 4px 1px var(--uy-color-utility-shadow-100);
|
|
1113
1117
|
--uy-shadow-200: 0px 2px 8px 1px var(--uy-color-utility-shadow-200);
|
|
1114
1118
|
--uy-shadow-300: 0px 5px 10px 1px var(--uy-color-utility-shadow-300);
|
|
@@ -1678,6 +1682,7 @@
|
|
|
1678
1682
|
--color-utility-shadow-400: var(--uy-color-utility-shadow-400);
|
|
1679
1683
|
--color-utility-shadow-500: var(--uy-color-utility-shadow-500);
|
|
1680
1684
|
--color-utility-shadow-600: var(--uy-color-utility-shadow-600);
|
|
1685
|
+
--gradient-payfit-ai: var(--uy-gradient-payfit-ai);
|
|
1681
1686
|
--shadow-100: var(--uy-shadow-100);
|
|
1682
1687
|
--shadow-200: var(--uy-shadow-200);
|
|
1683
1688
|
--shadow-300: var(--uy-shadow-300);
|
|
@@ -1749,6 +1754,10 @@
|
|
|
1749
1754
|
}
|
|
1750
1755
|
}
|
|
1751
1756
|
|
|
1757
|
+
@utility gradient-stops-* {
|
|
1758
|
+
--tw-gradient-stops: var(--tw-gradient-position), --value(--gradient-*);
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1752
1761
|
@utility typography-* {
|
|
1753
1762
|
font: --value(--typography-default-*);
|
|
1754
1763
|
@media screen and (min-width: 490px) {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Config, Dictionary, LocalOptions } from 'style-dictionary/types';
|
|
2
|
+
/**
|
|
3
|
+
* Creates a utility that assigns a gradient token's stop list to Tailwind's
|
|
4
|
+
* gradient-stop custom property. Include Tailwind's gradient position in the
|
|
5
|
+
* value because its background utilities set that position separately and
|
|
6
|
+
* expect the stop list to consume it.
|
|
7
|
+
*/
|
|
8
|
+
export declare function processGradientTokens(dictionary: Dictionary, options: Config & LocalOptions): string;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Token } from 'style-dictionary';
|
|
2
|
+
import { Config, PlatformConfig } from 'style-dictionary/types';
|
|
3
|
+
export declare function filter(token: Token, options: Config): boolean;
|
|
4
|
+
export declare function transform(token: Token, _config: PlatformConfig, options: Config): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@payfit/unity-themes",
|
|
3
|
-
"version": "2.67.
|
|
3
|
+
"version": "2.67.21",
|
|
4
4
|
"main": "./dist/esm/index.js",
|
|
5
5
|
"types": "./dist/esm/index.d.ts",
|
|
6
6
|
"style": "./dist/css/unity.css",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"@payfit/hr-app-eslint": "0.0.0-use.local",
|
|
74
74
|
"@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
|
|
75
75
|
"@payfit/storybook-addon-datadog-rum": "0.0.0-use.local",
|
|
76
|
-
"@payfit/
|
|
77
|
-
"@payfit/
|
|
76
|
+
"@payfit/vite-configs": "0.0.0-use.local",
|
|
77
|
+
"@payfit/storybook-config": "0.0.0-use.local"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"@fontsource/inter": "5.0.19",
|
|
@@ -6484,22 +6484,22 @@
|
|
|
6484
6484
|
"type": "color",
|
|
6485
6485
|
"values": {
|
|
6486
6486
|
"legacy": {
|
|
6487
|
-
"resolved": "oklch(
|
|
6487
|
+
"resolved": "oklch(99.087% 0.00448 34.309)",
|
|
6488
6488
|
"references": [
|
|
6489
6489
|
{
|
|
6490
|
-
"path": "color.orange.
|
|
6491
|
-
"name": "orange-
|
|
6492
|
-
"cssVariable": "--uy-color-orange-
|
|
6490
|
+
"path": "color.orange.L1",
|
|
6491
|
+
"name": "orange-l1",
|
|
6492
|
+
"cssVariable": "--uy-color-orange-l1"
|
|
6493
6493
|
}
|
|
6494
6494
|
]
|
|
6495
6495
|
},
|
|
6496
6496
|
"rebrand": {
|
|
6497
|
-
"resolved": "oklch(
|
|
6497
|
+
"resolved": "oklch(98.951% 0.00901 78.283)",
|
|
6498
6498
|
"references": [
|
|
6499
6499
|
{
|
|
6500
|
-
"path": "color.orange.
|
|
6501
|
-
"name": "orange-
|
|
6502
|
-
"cssVariable": "--uy-color-orange-
|
|
6500
|
+
"path": "color.orange.L1",
|
|
6501
|
+
"name": "orange-l1",
|
|
6502
|
+
"cssVariable": "--uy-color-orange-l1"
|
|
6503
6503
|
}
|
|
6504
6504
|
]
|
|
6505
6505
|
}
|
|
@@ -6600,22 +6600,22 @@
|
|
|
6600
6600
|
"type": "color",
|
|
6601
6601
|
"values": {
|
|
6602
6602
|
"legacy": {
|
|
6603
|
-
"resolved": "oklch(
|
|
6603
|
+
"resolved": "oklch(97.96% 0.01323 340.54)",
|
|
6604
6604
|
"references": [
|
|
6605
6605
|
{
|
|
6606
|
-
"path": "color.plum.
|
|
6607
|
-
"name": "plum-
|
|
6608
|
-
"cssVariable": "--uy-color-plum-
|
|
6606
|
+
"path": "color.plum.L1",
|
|
6607
|
+
"name": "plum-l1",
|
|
6608
|
+
"cssVariable": "--uy-color-plum-l1"
|
|
6609
6609
|
}
|
|
6610
6610
|
]
|
|
6611
6611
|
},
|
|
6612
6612
|
"rebrand": {
|
|
6613
|
-
"resolved": "oklch(
|
|
6613
|
+
"resolved": "oklch(98.074% 0.01687 325.7)",
|
|
6614
6614
|
"references": [
|
|
6615
6615
|
{
|
|
6616
|
-
"path": "color.plum.
|
|
6617
|
-
"name": "plum-
|
|
6618
|
-
"cssVariable": "--uy-color-plum-
|
|
6616
|
+
"path": "color.plum.L1",
|
|
6617
|
+
"name": "plum-l1",
|
|
6618
|
+
"cssVariable": "--uy-color-plum-l1"
|
|
6619
6619
|
}
|
|
6620
6620
|
]
|
|
6621
6621
|
}
|
|
@@ -6716,22 +6716,22 @@
|
|
|
6716
6716
|
"type": "color",
|
|
6717
6717
|
"values": {
|
|
6718
6718
|
"legacy": {
|
|
6719
|
-
"resolved": "oklch(
|
|
6719
|
+
"resolved": "oklch(98.727% 0.00667 295.45)",
|
|
6720
6720
|
"references": [
|
|
6721
6721
|
{
|
|
6722
|
-
"path": "color.purple.
|
|
6723
|
-
"name": "purple-
|
|
6724
|
-
"cssVariable": "--uy-color-purple-
|
|
6722
|
+
"path": "color.purple.L1",
|
|
6723
|
+
"name": "purple-l1",
|
|
6724
|
+
"cssVariable": "--uy-color-purple-l1"
|
|
6725
6725
|
}
|
|
6726
6726
|
]
|
|
6727
6727
|
},
|
|
6728
6728
|
"rebrand": {
|
|
6729
|
-
"resolved": "oklch(
|
|
6729
|
+
"resolved": "oklch(98.727% 0.00667 295.45)",
|
|
6730
6730
|
"references": [
|
|
6731
6731
|
{
|
|
6732
|
-
"path": "color.purple.
|
|
6733
|
-
"name": "purple-
|
|
6734
|
-
"cssVariable": "--uy-color-purple-
|
|
6732
|
+
"path": "color.purple.L1",
|
|
6733
|
+
"name": "purple-l1",
|
|
6734
|
+
"cssVariable": "--uy-color-purple-l1"
|
|
6735
6735
|
}
|
|
6736
6736
|
]
|
|
6737
6737
|
}
|
|
@@ -6832,22 +6832,22 @@
|
|
|
6832
6832
|
"type": "color",
|
|
6833
6833
|
"values": {
|
|
6834
6834
|
"legacy": {
|
|
6835
|
-
"resolved": "oklch(
|
|
6835
|
+
"resolved": "oklch(98.741% 0.01366 196.94)",
|
|
6836
6836
|
"references": [
|
|
6837
6837
|
{
|
|
6838
|
-
"path": "color.teal.
|
|
6839
|
-
"name": "teal-
|
|
6840
|
-
"cssVariable": "--uy-color-teal-
|
|
6838
|
+
"path": "color.teal.L1",
|
|
6839
|
+
"name": "teal-l1",
|
|
6840
|
+
"cssVariable": "--uy-color-teal-l1"
|
|
6841
6841
|
}
|
|
6842
6842
|
]
|
|
6843
6843
|
},
|
|
6844
6844
|
"rebrand": {
|
|
6845
|
-
"resolved": "oklch(
|
|
6845
|
+
"resolved": "oklch(98.684% 0.01389 185.97)",
|
|
6846
6846
|
"references": [
|
|
6847
6847
|
{
|
|
6848
|
-
"path": "color.teal.
|
|
6849
|
-
"name": "teal-
|
|
6850
|
-
"cssVariable": "--uy-color-teal-
|
|
6848
|
+
"path": "color.teal.L1",
|
|
6849
|
+
"name": "teal-l1",
|
|
6850
|
+
"cssVariable": "--uy-color-teal-l1"
|
|
6851
6851
|
}
|
|
6852
6852
|
]
|
|
6853
6853
|
}
|
|
@@ -10781,6 +10781,55 @@
|
|
|
10781
10781
|
}
|
|
10782
10782
|
}
|
|
10783
10783
|
},
|
|
10784
|
+
{
|
|
10785
|
+
"name": "payfit-ai",
|
|
10786
|
+
"sourcePath": "gradient.payfit-ai",
|
|
10787
|
+
"cssVariable": "--uy-gradient-payfit-ai",
|
|
10788
|
+
"family": "gradient",
|
|
10789
|
+
"type": "gradient",
|
|
10790
|
+
"values": {
|
|
10791
|
+
"legacy": {
|
|
10792
|
+
"resolved": "oklch(88.467% 0.16439 92.595) 0%, oklch(71.011% 0.17788 346.37) 50%, oklch(66.102% 0.17494 254.38) 100%",
|
|
10793
|
+
"references": [
|
|
10794
|
+
{
|
|
10795
|
+
"path": "color.blue.L4",
|
|
10796
|
+
"name": "blue-l4",
|
|
10797
|
+
"cssVariable": "--uy-color-blue-l4"
|
|
10798
|
+
},
|
|
10799
|
+
{
|
|
10800
|
+
"path": "color.plum.L5",
|
|
10801
|
+
"name": "plum-l5",
|
|
10802
|
+
"cssVariable": "--uy-color-plum-l5"
|
|
10803
|
+
},
|
|
10804
|
+
{
|
|
10805
|
+
"path": "color.yellow.L5",
|
|
10806
|
+
"name": "yellow-l5",
|
|
10807
|
+
"cssVariable": "--uy-color-yellow-l5"
|
|
10808
|
+
}
|
|
10809
|
+
]
|
|
10810
|
+
},
|
|
10811
|
+
"rebrand": {
|
|
10812
|
+
"resolved": "oklch(89.595% 0.13091 97.032) 0%, oklch(77.951% 0.22327 327.45) 50%, oklch(86.944% 0.07387 225.17) 100%",
|
|
10813
|
+
"references": [
|
|
10814
|
+
{
|
|
10815
|
+
"path": "color.blue.L4",
|
|
10816
|
+
"name": "blue-l4",
|
|
10817
|
+
"cssVariable": "--uy-color-blue-l4"
|
|
10818
|
+
},
|
|
10819
|
+
{
|
|
10820
|
+
"path": "color.plum.L5",
|
|
10821
|
+
"name": "plum-l5",
|
|
10822
|
+
"cssVariable": "--uy-color-plum-l5"
|
|
10823
|
+
},
|
|
10824
|
+
{
|
|
10825
|
+
"path": "color.yellow.L5",
|
|
10826
|
+
"name": "yellow-l5",
|
|
10827
|
+
"cssVariable": "--uy-color-yellow-l5"
|
|
10828
|
+
}
|
|
10829
|
+
]
|
|
10830
|
+
}
|
|
10831
|
+
}
|
|
10832
|
+
},
|
|
10784
10833
|
{
|
|
10785
10834
|
"name": "layout-columns--default",
|
|
10786
10835
|
"sourcePath": "grid.layout.default.columns",
|
|
@@ -848,7 +848,7 @@
|
|
|
848
848
|
"$value": "{color.teal.L3}"
|
|
849
849
|
},
|
|
850
850
|
"lowest": {
|
|
851
|
-
"$value": "{color.teal.
|
|
851
|
+
"$value": "{color.teal.L1}"
|
|
852
852
|
}
|
|
853
853
|
},
|
|
854
854
|
"decorative-purple": {
|
|
@@ -862,7 +862,7 @@
|
|
|
862
862
|
"$value": "{color.purple.L3}"
|
|
863
863
|
},
|
|
864
864
|
"lowest": {
|
|
865
|
-
"$value": "{color.purple.
|
|
865
|
+
"$value": "{color.purple.L1}"
|
|
866
866
|
}
|
|
867
867
|
},
|
|
868
868
|
"decorative-plum": {
|
|
@@ -876,7 +876,7 @@
|
|
|
876
876
|
"$value": "{color.plum.L3}"
|
|
877
877
|
},
|
|
878
878
|
"lowest": {
|
|
879
|
-
"$value": "{color.plum.
|
|
879
|
+
"$value": "{color.plum.L1}"
|
|
880
880
|
}
|
|
881
881
|
},
|
|
882
882
|
"decorative-orange": {
|
|
@@ -890,7 +890,7 @@
|
|
|
890
890
|
"$value": "{color.orange.L3}"
|
|
891
891
|
},
|
|
892
892
|
"lowest": {
|
|
893
|
-
"$value": "{color.orange.
|
|
893
|
+
"$value": "{color.orange.L1}"
|
|
894
894
|
}
|
|
895
895
|
}
|
|
896
896
|
},
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gradient": {
|
|
3
|
+
"payfit-ai": {
|
|
4
|
+
"$type": "gradient",
|
|
5
|
+
"$description": "Gradients for Payfit AI effects and components",
|
|
6
|
+
"$value": [
|
|
7
|
+
{
|
|
8
|
+
"color": "{color.yellow.L5}",
|
|
9
|
+
"position": 0
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"color": "{color.plum.L5}",
|
|
13
|
+
"position": 0.5
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": "{color.blue.L4}",
|
|
17
|
+
"position": 1
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -894,7 +894,7 @@
|
|
|
894
894
|
"$value": "{color.teal.L3}"
|
|
895
895
|
},
|
|
896
896
|
"lowest": {
|
|
897
|
-
"$value": "{color.teal.
|
|
897
|
+
"$value": "{color.teal.L1}"
|
|
898
898
|
}
|
|
899
899
|
},
|
|
900
900
|
"decorative-purple": {
|
|
@@ -908,7 +908,7 @@
|
|
|
908
908
|
"$value": "{color.purple.L3}"
|
|
909
909
|
},
|
|
910
910
|
"lowest": {
|
|
911
|
-
"$value": "{color.purple.
|
|
911
|
+
"$value": "{color.purple.L1}"
|
|
912
912
|
}
|
|
913
913
|
},
|
|
914
914
|
"decorative-plum": {
|
|
@@ -922,7 +922,7 @@
|
|
|
922
922
|
"$value": "{color.plum.L3}"
|
|
923
923
|
},
|
|
924
924
|
"lowest": {
|
|
925
|
-
"$value": "{color.plum.
|
|
925
|
+
"$value": "{color.plum.L1}"
|
|
926
926
|
}
|
|
927
927
|
},
|
|
928
928
|
"decorative-orange": {
|
|
@@ -936,7 +936,7 @@
|
|
|
936
936
|
"$value": "{color.orange.L3}"
|
|
937
937
|
},
|
|
938
938
|
"lowest": {
|
|
939
|
-
"$value": "{color.orange.
|
|
939
|
+
"$value": "{color.orange.L1}"
|
|
940
940
|
}
|
|
941
941
|
}
|
|
942
942
|
},
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gradient": {
|
|
3
|
+
"payfit-ai": {
|
|
4
|
+
"$type": "gradient",
|
|
5
|
+
"$description": "Gradients for Payfit AI effects and components",
|
|
6
|
+
"$value": [
|
|
7
|
+
{
|
|
8
|
+
"color": "{color.yellow.L5}",
|
|
9
|
+
"position": 0
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"color": "{color.plum.L5}",
|
|
13
|
+
"position": 0.5
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": "{color.blue.L4}",
|
|
17
|
+
"position": 1
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|