@likec4/styles 1.33.0 → 1.34.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/README.md +25 -0
- package/dist/patterns/aspect-ratio.d.ts +0 -1
- package/dist/patterns/bleed.d.ts +0 -1
- package/dist/patterns/box.d.ts +0 -1
- package/dist/patterns/center.d.ts +0 -1
- package/dist/patterns/circle.d.ts +0 -1
- package/dist/patterns/container.d.ts +0 -1
- package/dist/patterns/cq.d.ts +0 -1
- package/dist/patterns/divider.d.ts +0 -1
- package/dist/patterns/flex.d.ts +0 -1
- package/dist/patterns/float.d.ts +0 -1
- package/dist/patterns/grid-item.d.ts +0 -1
- package/dist/patterns/grid.d.ts +0 -1
- package/dist/patterns/hstack.d.ts +0 -1
- package/dist/patterns/link-overlay.d.ts +0 -1
- package/dist/patterns/spacer.d.ts +0 -1
- package/dist/patterns/square.d.ts +0 -1
- package/dist/patterns/stack.d.ts +0 -1
- package/dist/patterns/visually-hidden.d.ts +0 -1
- package/dist/patterns/vstack.d.ts +0 -1
- package/dist/patterns/wrap.d.ts +0 -1
- package/dist/recipes/action-btn.d.ts +0 -2
- package/dist/styles.css +144 -145
- package/dist/tokens/tokens.d.ts +1 -1
- package/dist/types/conditions.d.ts +6 -6
- package/package.json +5 -5
- package/preset.mjs +2 -3
package/README.md
CHANGED
|
@@ -45,3 +45,28 @@ import pandaCss from '@pandacss/dev/postcss'
|
|
|
45
45
|
},
|
|
46
46
|
},
|
|
47
47
|
```
|
|
48
|
+
|
|
49
|
+
## Getting help
|
|
50
|
+
|
|
51
|
+
We are always happy to help you get started:
|
|
52
|
+
|
|
53
|
+
- [Join Discord community](https://discord.gg/86ZSpjKAdA) – it is the easiest way to get help
|
|
54
|
+
- [GitHub Discussions](https://github.com/likec4/likec4/discussions) – ask anything about the project or give feedback
|
|
55
|
+
|
|
56
|
+
## Contributors
|
|
57
|
+
|
|
58
|
+
<a href="https://github.com/likec4/likec4/graphs/contributors">
|
|
59
|
+
<img src="https://contrib.rocks/image?repo=likec4/likec4" />
|
|
60
|
+
</a>
|
|
61
|
+
|
|
62
|
+
[Become a contributor](../../CONTRIBUTING.md)
|
|
63
|
+
|
|
64
|
+
## Support development
|
|
65
|
+
|
|
66
|
+
LikeC4 is a MIT-licensed open source project with its ongoing development made possible entirely by your support.\
|
|
67
|
+
If you like the project, please consider contributing financially to help grow and improve it.\
|
|
68
|
+
You can support us via [OpenCollective](https://opencollective.com/likec4) or [GitHub Sponsors](https://github.com/sponsors/likec4).
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
This project is released under the [MIT License](LICENSE)
|
|
@@ -9,7 +9,6 @@ export interface AspectRatioProperties {
|
|
|
9
9
|
ratio?: ConditionalValue<number>
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
|
|
13
12
|
interface AspectRatioStyles extends AspectRatioProperties, DistributiveOmit<SystemStyleObject, keyof AspectRatioProperties | 'aspectRatio'> {}
|
|
14
13
|
|
|
15
14
|
interface AspectRatioPatternFn {
|
package/dist/patterns/bleed.d.ts
CHANGED
package/dist/patterns/box.d.ts
CHANGED
package/dist/patterns/cq.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ export interface DividerProperties {
|
|
|
11
11
|
color?: ConditionalValue<Tokens["colors"] | Properties["borderColor"]>
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
|
|
15
14
|
interface DividerStyles extends DividerProperties, DistributiveOmit<SystemStyleObject, keyof DividerProperties > {}
|
|
16
15
|
|
|
17
16
|
interface DividerPatternFn {
|
package/dist/patterns/flex.d.ts
CHANGED
package/dist/patterns/float.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ export interface FloatProperties {
|
|
|
12
12
|
placement?: ConditionalValue<"bottom-end" | "bottom-start" | "top-end" | "top-start" | "bottom-center" | "top-center" | "middle-center" | "middle-end" | "middle-start">
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
|
|
16
15
|
interface FloatStyles extends FloatProperties, DistributiveOmit<SystemStyleObject, keyof FloatProperties > {}
|
|
17
16
|
|
|
18
17
|
interface FloatPatternFn {
|
package/dist/patterns/grid.d.ts
CHANGED
package/dist/patterns/stack.d.ts
CHANGED
package/dist/patterns/wrap.d.ts
CHANGED
package/dist/styles.css
CHANGED
|
@@ -46,20 +46,19 @@
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.likec4-shadow-root {
|
|
49
|
-
display: contents;
|
|
50
49
|
--mantine-font-family: var(--likec4-app-font-default);
|
|
51
50
|
--mantine-font-family-headings: var(--likec4-app-font-default);
|
|
51
|
+
display: contents;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
.likec4-root {
|
|
55
|
+
padding: 0px;
|
|
56
|
+
margin: 0px;
|
|
57
|
+
border: 0px solid transparent;
|
|
55
58
|
overflow: hidden;
|
|
56
59
|
position: relative;
|
|
57
60
|
width: 100%;
|
|
58
61
|
height: 100%;
|
|
59
|
-
padding: var(--spacing-0);
|
|
60
|
-
margin: var(--spacing-0);
|
|
61
|
-
box-sizing: border-box;
|
|
62
|
-
border: 0px solid transparent;
|
|
63
62
|
}
|
|
64
63
|
|
|
65
64
|
.likec4-root .react-flow:is(.not-initialized) {
|
|
@@ -3750,10 +3749,6 @@
|
|
|
3750
3749
|
@layer _base{
|
|
3751
3750
|
|
|
3752
3751
|
.action-btn {
|
|
3753
|
-
pointer-events: all;
|
|
3754
|
-
cursor: pointer;
|
|
3755
|
-
color: var(--actionbtn-color);
|
|
3756
|
-
opacity: 0.75;
|
|
3757
3752
|
--actionbtn-color: var(--colors-likec4-palette-lo-contrast);
|
|
3758
3753
|
--actionbtn-color-hovered: var(--colors-likec4-palette-lo-contrast);
|
|
3759
3754
|
--actionbtn-color-hovered-btn: var(--colors-likec4-palette-hi-contrast);
|
|
@@ -3762,12 +3757,16 @@
|
|
|
3762
3757
|
--actionbtn-bg-hovered-btn: color-mix(in srgb , var(--colors-likec4-palette-fill) 50%, var(--colors-likec4-palette-stroke));
|
|
3763
3758
|
--ai-bg: var(--actionbtn-bg-idle);
|
|
3764
3759
|
background: var(--ai-bg);
|
|
3760
|
+
pointer-events: all;
|
|
3761
|
+
cursor: pointer;
|
|
3762
|
+
color: var(--actionbtn-color);
|
|
3763
|
+
opacity: 0.75;
|
|
3765
3764
|
}
|
|
3766
3765
|
|
|
3767
3766
|
:where([data-likec4-hovered="true"]) .action-btn {
|
|
3767
|
+
--ai-bg: var(--actionbtn-bg-hovered);
|
|
3768
3768
|
opacity: 1;
|
|
3769
3769
|
color: var(--actionbtn-color-hovered);
|
|
3770
|
-
--ai-bg: var(--actionbtn-bg-hovered);
|
|
3771
3770
|
}
|
|
3772
3771
|
|
|
3773
3772
|
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning]) .action-btn {
|
|
@@ -3783,27 +3782,27 @@
|
|
|
3783
3782
|
}
|
|
3784
3783
|
|
|
3785
3784
|
.action-btn:is(:hover, [data-hover]) {
|
|
3785
|
+
--ai-bg: var(--actionbtn-bg-hovered-btn);
|
|
3786
3786
|
opacity: 1;
|
|
3787
3787
|
color: var(--actionbtn-color-hovered-btn);
|
|
3788
|
-
--ai-bg: var(--actionbtn-bg-hovered-btn);
|
|
3789
3788
|
}
|
|
3790
3789
|
|
|
3791
3790
|
.likec4-tag {
|
|
3792
|
-
|
|
3793
|
-
display: flex;
|
|
3794
|
-
min-width: 40px;
|
|
3795
|
-
width: min-content;
|
|
3791
|
+
border: var(--borders-none);
|
|
3796
3792
|
transition: all var(--durations-fast) var(--easings-in-out);
|
|
3797
|
-
white-space: nowrap;
|
|
3798
3793
|
padding-inline: 5px;
|
|
3799
|
-
border: var(--borders-none);
|
|
3800
3794
|
border-radius: 3px;
|
|
3795
|
+
pointer-events: all;
|
|
3796
|
+
display: flex;
|
|
3801
3797
|
align-items: center;
|
|
3802
3798
|
justify-content: center;
|
|
3803
3799
|
font-size: var(--font-sizes-xs);
|
|
3804
3800
|
font-family: var(--likec4-element-font, var(--fonts-likec4));
|
|
3805
3801
|
font-weight: 500;
|
|
3802
|
+
white-space: nowrap;
|
|
3806
3803
|
background-color: var(--colors-likec4-tag-bg);
|
|
3804
|
+
min-width: 40px;
|
|
3805
|
+
width: min-content;
|
|
3807
3806
|
}
|
|
3808
3807
|
|
|
3809
3808
|
.likec4-tag > span {
|
|
@@ -3815,44 +3814,14 @@
|
|
|
3815
3814
|
}
|
|
3816
3815
|
|
|
3817
3816
|
.likec4-markdown-block {
|
|
3818
|
-
pointer-events: all;
|
|
3819
3817
|
--text-fz: 1rem;
|
|
3820
3818
|
--typography-spacing: calc(0.75 * var(--text-fz) * var(--mantine-scale, 1));
|
|
3821
3819
|
--text-fz-sm: calc(var(--text-fz) * var(--mantine-scale) / 1.125);
|
|
3822
3820
|
--text-fz-md: calc(var(--text-fz) * var(--mantine-scale));
|
|
3823
3821
|
--text-fw-headings: 600;
|
|
3824
|
-
|
|
3825
|
-
font-size: var(--text-fz-md);
|
|
3826
|
-
}
|
|
3827
|
-
|
|
3828
|
-
.likec4-markdown-block :where(h1, h2, h3, h4, h5, h6) {
|
|
3829
|
-
text-wrap: var(--mantine-heading-text-wrap);
|
|
3830
|
-
line-height: 1.5;
|
|
3831
|
-
font-family: var(--mantine-font-family-headings);
|
|
3832
|
-
margin-bottom: var(--typography-spacing);
|
|
3833
|
-
}
|
|
3834
|
-
|
|
3835
|
-
.likec4-markdown-block :where(img) {
|
|
3836
|
-
max-width: 100%;
|
|
3837
|
-
margin-bottom: var(--typography-spacing);
|
|
3838
|
-
}
|
|
3839
|
-
|
|
3840
|
-
.likec4-markdown-block :where(p) {
|
|
3841
|
-
white-space: preserve-breaks;
|
|
3842
|
-
font-size: var(--text-fz-md);
|
|
3843
|
-
margin-top: var(--spacing-0);
|
|
3844
|
-
margin-bottom: var(--typography-spacing);
|
|
3845
|
-
}
|
|
3846
|
-
|
|
3847
|
-
.likec4-markdown-block :where(a) {
|
|
3848
|
-
color: var(--mantine-color-anchor);
|
|
3849
|
-
text-decoration: none;
|
|
3822
|
+
pointer-events: all;
|
|
3850
3823
|
font-size: var(--text-fz-md);
|
|
3851
|
-
|
|
3852
|
-
}
|
|
3853
|
-
|
|
3854
|
-
.likec4-markdown-block :where(a):is(:hover, [data-hover]) {
|
|
3855
|
-
text-decoration: underline;
|
|
3824
|
+
padding-bottom: calc(.5 * var(--typography-spacing) + 1px);
|
|
3856
3825
|
}
|
|
3857
3826
|
|
|
3858
3827
|
.likec4-markdown-block :where(hr) {
|
|
@@ -3874,19 +3843,19 @@
|
|
|
3874
3843
|
margin: var(--spacing-0);
|
|
3875
3844
|
border-radius: var(--mantine-radius-xs);
|
|
3876
3845
|
line-height: var(--mantine-line-height);
|
|
3846
|
+
font-family: var(--mantine-font-family-monospace);
|
|
3847
|
+
font-size: var(--text-fz-sm);
|
|
3877
3848
|
margin-top: var(--mantine-spacing-md);
|
|
3878
3849
|
margin-bottom: var(--mantine-spacing-md);
|
|
3879
3850
|
overflow-x: auto;
|
|
3880
|
-
font-family: var(--mantine-font-family-monospace);
|
|
3881
|
-
font-size: var(--text-fz-sm);
|
|
3882
3851
|
}
|
|
3883
3852
|
|
|
3884
3853
|
.likec4-markdown-block :where(pre) :where(code) {
|
|
3885
3854
|
padding: var(--spacing-0);
|
|
3886
|
-
border-radius: 0;
|
|
3887
|
-
color: inherit;
|
|
3888
3855
|
border: 0;
|
|
3856
|
+
border-radius: 0;
|
|
3889
3857
|
background-color: var(--colors-transparent);
|
|
3858
|
+
color: inherit;
|
|
3890
3859
|
}
|
|
3891
3860
|
|
|
3892
3861
|
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(pre) {
|
|
@@ -3906,74 +3875,19 @@
|
|
|
3906
3875
|
}
|
|
3907
3876
|
|
|
3908
3877
|
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(code) {
|
|
3909
|
-
color: mantine.colors.black;
|
|
3910
3878
|
background-color: var(--colors-mantine-colors-gray\[0\]);
|
|
3879
|
+
color: mantine.colors.black;
|
|
3911
3880
|
}
|
|
3912
3881
|
|
|
3913
3882
|
[data-mantine-color-scheme="dark"] .likec4-markdown-block :where(code) {
|
|
3914
|
-
color: var(--colors-mantine-colors-white);
|
|
3915
3883
|
background-color: var(--colors-mantine-colors-dark\[5\]);
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
.likec4-markdown-block :where(ul, ol):not([data-type="taskList"]) {
|
|
3919
|
-
padding-inline-start: var(--typography-spacing);
|
|
3920
|
-
margin-bottom: var(--typography-spacing);
|
|
3921
|
-
list-style-position: outside;
|
|
3922
|
-
}
|
|
3923
|
-
|
|
3924
|
-
.likec4-markdown-block :where(table) {
|
|
3925
|
-
width: 100%;
|
|
3926
|
-
border-collapse: collapse;
|
|
3927
|
-
caption-side: bottom;
|
|
3928
|
-
margin-bottom: var(--mantine-spacing-md);
|
|
3929
|
-
}
|
|
3930
|
-
|
|
3931
|
-
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(table) {
|
|
3932
|
-
--table-border-color: var(--mantine-color-gray-3);
|
|
3933
|
-
}
|
|
3934
|
-
|
|
3935
|
-
[data-mantine-color-scheme="dark"] .likec4-markdown-block :where(table) {
|
|
3936
|
-
--table-border-color: var(--mantine-color-dark-4);
|
|
3937
|
-
}
|
|
3938
|
-
|
|
3939
|
-
.likec4-markdown-block :where(table) :where(caption) {
|
|
3940
|
-
color: var(--mantine-color-dimmed);
|
|
3941
|
-
margin-top: var(--mantine-spacing-xs);
|
|
3942
|
-
font-size: var(--text-fz-sm);
|
|
3943
|
-
}
|
|
3944
|
-
|
|
3945
|
-
.likec4-markdown-block :where(table) :where(th) {
|
|
3946
|
-
text-align: left;
|
|
3947
|
-
padding: var(--mantine-spacing-xs) var(--mantine-spacing-xs);
|
|
3948
|
-
font-weight: bold;
|
|
3949
|
-
font-size: var(--text-fz-sm);
|
|
3950
|
-
}
|
|
3951
|
-
|
|
3952
|
-
.likec4-markdown-block :where(table) :where(thead th) {
|
|
3953
|
-
border-bottom: 1px solid;
|
|
3954
|
-
border-color: var(--table-border-color);
|
|
3955
|
-
}
|
|
3956
|
-
|
|
3957
|
-
.likec4-markdown-block :where(table) :where(tfoot th) {
|
|
3958
|
-
border-top: 1px solid;
|
|
3959
|
-
border-color: var(--table-border-color);
|
|
3960
|
-
}
|
|
3961
|
-
|
|
3962
|
-
.likec4-markdown-block :where(table) :where(td) {
|
|
3963
|
-
padding: var(--mantine-spacing-xs) var(--mantine-spacing-xs);
|
|
3964
|
-
border-bottom: 1px solid;
|
|
3965
|
-
border-color: var(--table-border-color);
|
|
3966
|
-
font-size: var(--text-fz-sm);
|
|
3967
|
-
}
|
|
3968
|
-
|
|
3969
|
-
.likec4-markdown-block :where(table) :where(tr:last-of-type td) {
|
|
3970
|
-
border-bottom: 0;
|
|
3884
|
+
color: var(--colors-mantine-colors-white);
|
|
3971
3885
|
}
|
|
3972
3886
|
|
|
3973
3887
|
.likec4-markdown-block :where(blockquote) {
|
|
3974
3888
|
margin: var(--spacing-0);
|
|
3975
|
-
border-radius: var(--mantine-radius-sm);
|
|
3976
3889
|
padding: var(--spacing-xs);
|
|
3890
|
+
border-radius: var(--mantine-radius-sm);
|
|
3977
3891
|
font-size: var(--text-fz-md);
|
|
3978
3892
|
line-height: var(--mantine-line-height);
|
|
3979
3893
|
}
|
|
@@ -3990,16 +3904,22 @@
|
|
|
3990
3904
|
margin-top: var(--typography-spacing);
|
|
3991
3905
|
}
|
|
3992
3906
|
|
|
3993
|
-
.likec4-markdown-block :
|
|
3994
|
-
|
|
3907
|
+
.likec4-markdown-block :where(h1, h2, h3, h4, h5, h6) {
|
|
3908
|
+
text-wrap: var(--mantine-heading-text-wrap);
|
|
3909
|
+
line-height: 1.5;
|
|
3910
|
+
font-family: var(--mantine-font-family-headings);
|
|
3911
|
+
margin-bottom: var(--typography-spacing);
|
|
3995
3912
|
}
|
|
3996
3913
|
|
|
3997
|
-
.likec4-markdown-block :
|
|
3998
|
-
|
|
3914
|
+
.likec4-markdown-block :where(a) {
|
|
3915
|
+
text-decoration: none;
|
|
3916
|
+
font-size: var(--text-fz-md);
|
|
3917
|
+
color: var(--mantine-color-anchor);
|
|
3918
|
+
font-weight: 500;
|
|
3999
3919
|
}
|
|
4000
3920
|
|
|
4001
|
-
.likec4-markdown-block :
|
|
4002
|
-
|
|
3921
|
+
.likec4-markdown-block :where(a):is(:hover, [data-hover]) {
|
|
3922
|
+
text-decoration: underline;
|
|
4003
3923
|
}
|
|
4004
3924
|
|
|
4005
3925
|
.likec4-markdown-block :is(h1) {
|
|
@@ -4032,6 +3952,13 @@
|
|
|
4032
3952
|
font-weight: var(--text-fw-headings);
|
|
4033
3953
|
}
|
|
4034
3954
|
|
|
3955
|
+
.likec4-markdown-block :where(p) {
|
|
3956
|
+
font-size: var(--text-fz-md);
|
|
3957
|
+
white-space: preserve-breaks;
|
|
3958
|
+
margin-top: var(--spacing-0);
|
|
3959
|
+
margin-bottom: var(--typography-spacing);
|
|
3960
|
+
}
|
|
3961
|
+
|
|
4035
3962
|
.likec4-markdown-block :where(strong) {
|
|
4036
3963
|
font-weight: 500;
|
|
4037
3964
|
}
|
|
@@ -4041,13 +3968,85 @@
|
|
|
4041
3968
|
}
|
|
4042
3969
|
|
|
4043
3970
|
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(mark) {
|
|
4044
|
-
color: inherit;
|
|
4045
3971
|
background-color: var(--colors-mantine-colors-yellow\[2\]);
|
|
3972
|
+
color: inherit;
|
|
4046
3973
|
}
|
|
4047
3974
|
|
|
4048
3975
|
[data-mantine-color-scheme="dark"] .likec4-markdown-block :where(mark) {
|
|
4049
|
-
color: mantine.colors.black;
|
|
4050
3976
|
background-color: var(--colors-mantine-colors-yellow\[5\]);
|
|
3977
|
+
color: mantine.colors.black;
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
.likec4-markdown-block :where(ul, ol):not([data-type="taskList"]) {
|
|
3981
|
+
padding-inline-start: var(--typography-spacing);
|
|
3982
|
+
list-style-position: outside;
|
|
3983
|
+
margin-bottom: var(--typography-spacing);
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
.likec4-markdown-block :where(table) {
|
|
3987
|
+
border-collapse: collapse;
|
|
3988
|
+
caption-side: bottom;
|
|
3989
|
+
width: 100%;
|
|
3990
|
+
margin-bottom: var(--mantine-spacing-md);
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(table) {
|
|
3994
|
+
--table-border-color: var(--mantine-color-gray-3);
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
[data-mantine-color-scheme="dark"] .likec4-markdown-block :where(table) {
|
|
3998
|
+
--table-border-color: var(--mantine-color-dark-4);
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
.likec4-markdown-block :where(table) :where(th) {
|
|
4002
|
+
padding: var(--mantine-spacing-xs) var(--mantine-spacing-xs);
|
|
4003
|
+
text-align: left;
|
|
4004
|
+
font-weight: bold;
|
|
4005
|
+
font-size: var(--text-fz-sm);
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
.likec4-markdown-block :where(table) :where(td) {
|
|
4009
|
+
padding: var(--mantine-spacing-xs) var(--mantine-spacing-xs);
|
|
4010
|
+
border-bottom: 1px solid;
|
|
4011
|
+
border-color: var(--table-border-color);
|
|
4012
|
+
font-size: var(--text-fz-sm);
|
|
4013
|
+
}
|
|
4014
|
+
|
|
4015
|
+
.likec4-markdown-block :where(table) :where(thead th) {
|
|
4016
|
+
border-bottom: 1px solid;
|
|
4017
|
+
border-color: var(--table-border-color);
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
.likec4-markdown-block :where(table) :where(tfoot th) {
|
|
4021
|
+
border-top: 1px solid;
|
|
4022
|
+
border-color: var(--table-border-color);
|
|
4023
|
+
}
|
|
4024
|
+
|
|
4025
|
+
.likec4-markdown-block :where(table) :where(tr:last-of-type td) {
|
|
4026
|
+
border-bottom: 0;
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
.likec4-markdown-block :where(table) :where(caption) {
|
|
4030
|
+
font-size: var(--text-fz-sm);
|
|
4031
|
+
color: var(--mantine-color-dimmed);
|
|
4032
|
+
margin-top: var(--mantine-spacing-xs);
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
.likec4-markdown-block :first-child {
|
|
4036
|
+
margin-top: var(--spacing-0);
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
.likec4-markdown-block :last-child {
|
|
4040
|
+
margin-bottom: var(--spacing-0);
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
.likec4-markdown-block :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
|
|
4044
|
+
margin-top: var(--typography-spacing);
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
.likec4-markdown-block :where(img) {
|
|
4048
|
+
max-width: 100%;
|
|
4049
|
+
margin-bottom: var(--typography-spacing);
|
|
4051
4050
|
}
|
|
4052
4051
|
}
|
|
4053
4052
|
|
|
@@ -4128,21 +4127,21 @@
|
|
|
4128
4127
|
}
|
|
4129
4128
|
|
|
4130
4129
|
.likec4-tag--autoTextColor_true > span {
|
|
4130
|
+
background: inherit;
|
|
4131
4131
|
color: var(--colors-transparent);
|
|
4132
4132
|
filter: invert(1) grayscale(1) brightness(1.3) contrast(1000);
|
|
4133
|
-
background: inherit;
|
|
4134
|
-
mix-blend-mode: plus-lighter;
|
|
4135
4133
|
background-clip: text;
|
|
4136
4134
|
-webkit-background-clip: text;
|
|
4135
|
+
mix-blend-mode: plus-lighter;
|
|
4137
4136
|
}
|
|
4138
4137
|
|
|
4139
4138
|
.hover\:likec4-tag--autoTextColor_true:is(:hover, [data-hover]) > span {
|
|
4139
|
+
background: inherit;
|
|
4140
4140
|
color: var(--colors-transparent);
|
|
4141
4141
|
filter: invert(1) grayscale(1) brightness(1.3) contrast(1000);
|
|
4142
|
-
background: inherit;
|
|
4143
|
-
mix-blend-mode: plus-lighter;
|
|
4144
4142
|
background-clip: text;
|
|
4145
4143
|
-webkit-background-clip: text;
|
|
4144
|
+
mix-blend-mode: plus-lighter;
|
|
4146
4145
|
}
|
|
4147
4146
|
|
|
4148
4147
|
.hover\:likec4-tag--autoTextColor_false:is(:hover, [data-hover]) > span {
|
|
@@ -4153,56 +4152,56 @@
|
|
|
4153
4152
|
--typography-spacing: calc(0.25rem * var(--mantine-scale, 1));
|
|
4154
4153
|
}
|
|
4155
4154
|
|
|
4156
|
-
.likec4-markdown-block--uselikec4palette_true :where(
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
mix-
|
|
4155
|
+
.likec4-markdown-block--uselikec4palette_true :where(blockquote) {
|
|
4156
|
+
padding: var(--spacing-2xs);
|
|
4157
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 65%, transparent);
|
|
4158
|
+
background-color: var(--mix-backgroundColor, var(--colors-likec4-palette-stroke));
|
|
4160
4159
|
}
|
|
4161
4160
|
|
|
4162
4161
|
.likec4-markdown-block--uselikec4palette_true :where(code) {
|
|
4163
|
-
color: var(--colors-likec4-palette-hi-contrast);
|
|
4164
4162
|
--mix-borderColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 85%, transparent);
|
|
4165
4163
|
border-color: var(--mix-borderColor, var(--colors-likec4-palette-stroke));
|
|
4164
|
+
color: var(--colors-likec4-palette-hi-contrast);
|
|
4166
4165
|
--mix-backgroundColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 70%, transparent);
|
|
4167
4166
|
background-color: var(--mix-backgroundColor, var(--colors-likec4-palette-stroke));
|
|
4168
4167
|
}
|
|
4169
4168
|
|
|
4170
|
-
.likec4-markdown-block--uselikec4palette_true :where(
|
|
4171
|
-
color: color-mix(in srgb
|
|
4169
|
+
.likec4-markdown-block--uselikec4palette_true :where(a) {
|
|
4170
|
+
--mix-color: color-mix(in srgb, var(--colors-likec4-palette-fill) 45%, transparent);
|
|
4171
|
+
color: var(--mix-color, var(--colors-likec4-palette-fill));
|
|
4172
|
+
mix-blend-mode: difference;
|
|
4172
4173
|
}
|
|
4173
4174
|
|
|
4174
|
-
.likec4-markdown-block--uselikec4palette_true :where(
|
|
4175
|
-
|
|
4176
|
-
--mix-backgroundColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 65%, transparent);
|
|
4177
|
-
background-color: var(--mix-backgroundColor, var(--colors-likec4-palette-stroke));
|
|
4175
|
+
.likec4-markdown-block--uselikec4palette_true :where(strong) {
|
|
4176
|
+
color: color-mix(in srgb , var(--colors-likec4-palette-hi-contrast) 50%, var(--colors-likec4-palette-lo-contrast));
|
|
4178
4177
|
}
|
|
4179
4178
|
|
|
4180
4179
|
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) {
|
|
4181
4180
|
--typography-spacing: calc(0.25rem * var(--mantine-scale, 1));
|
|
4182
4181
|
}
|
|
4183
4182
|
|
|
4184
|
-
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) :where(
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
mix-
|
|
4183
|
+
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) :where(blockquote) {
|
|
4184
|
+
padding: var(--spacing-2xs);
|
|
4185
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 65%, transparent);
|
|
4186
|
+
background-color: var(--mix-backgroundColor, var(--colors-likec4-palette-stroke));
|
|
4188
4187
|
}
|
|
4189
4188
|
|
|
4190
4189
|
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) :where(code) {
|
|
4191
|
-
color: var(--colors-likec4-palette-hi-contrast);
|
|
4192
4190
|
--mix-borderColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 85%, transparent);
|
|
4193
4191
|
border-color: var(--mix-borderColor, var(--colors-likec4-palette-stroke));
|
|
4192
|
+
color: var(--colors-likec4-palette-hi-contrast);
|
|
4194
4193
|
--mix-backgroundColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 70%, transparent);
|
|
4195
4194
|
background-color: var(--mix-backgroundColor, var(--colors-likec4-palette-stroke));
|
|
4196
4195
|
}
|
|
4197
4196
|
|
|
4198
|
-
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) :where(
|
|
4199
|
-
color: color-mix(in srgb
|
|
4197
|
+
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) :where(a) {
|
|
4198
|
+
--mix-color: color-mix(in srgb, var(--colors-likec4-palette-fill) 45%, transparent);
|
|
4199
|
+
color: var(--mix-color, var(--colors-likec4-palette-fill));
|
|
4200
|
+
mix-blend-mode: difference;
|
|
4200
4201
|
}
|
|
4201
4202
|
|
|
4202
|
-
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) :where(
|
|
4203
|
-
|
|
4204
|
-
--mix-backgroundColor: color-mix(in srgb, var(--colors-likec4-palette-stroke) 65%, transparent);
|
|
4205
|
-
background-color: var(--mix-backgroundColor, var(--colors-likec4-palette-stroke));
|
|
4203
|
+
.hover\:likec4-markdown-block--uselikec4palette_true:is(:hover, [data-hover]) :where(strong) {
|
|
4204
|
+
color: color-mix(in srgb , var(--colors-likec4-palette-hi-contrast) 50%, var(--colors-likec4-palette-lo-contrast));
|
|
4206
4205
|
}
|
|
4207
4206
|
}
|
|
4208
4207
|
|
package/dist/tokens/tokens.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
export type Token = "radii.xs" | "radii.sm" | "radii.md" | "radii.lg" | "radii.xl" | "fontSizes.xxs" | "fontSizes.xs" | "fontSizes.sm" | "fontSizes.md" | "fontSizes.lg" | "fontSizes.xl" | "fontSizes.likec4.xs" | "fontSizes.likec4.sm" | "fontSizes.likec4.md" | "fontSizes.likec4.lg" | "fontSizes.likec4.xl" | "shadows.xs" | "shadows.sm" | "shadows.md" | "shadows.lg" | "shadows.xl" | "lineHeights.1" | "lineHeights.xs" | "lineHeights.sm" | "lineHeights.md" | "lineHeights.lg" | "lineHeights.xl" | "borders.none" | "borders.transparent" | "borders.default" | "spacing.0" | "spacing.2" | "spacing.4" | "spacing.8" | "spacing.xs" | "spacing.sm" | "spacing.md" | "spacing.lg" | "spacing.xl" | "spacing.likec4.xs" | "spacing.likec4.sm" | "spacing.likec4.md" | "spacing.likec4.lg" | "spacing.likec4.xl" | "spacing.micro" | "spacing.2xs" | "colors.mantine.colors.primary" | "colors.mantine.colors.primary.filled" | "colors.mantine.colors.primary.filledHover" | "colors.mantine.colors.primary.light" | "colors.mantine.colors.primary.lightHover" | "colors.mantine.colors.primary.lightColor" | "colors.mantine.colors.primary.outline" | "colors.mantine.colors.primary.outlineHover" | "colors.mantine.colors.primary[0]" | "colors.mantine.colors.primary[1]" | "colors.mantine.colors.primary[2]" | "colors.mantine.colors.primary[3]" | "colors.mantine.colors.primary[4]" | "colors.mantine.colors.primary[5]" | "colors.mantine.colors.primary[6]" | "colors.mantine.colors.primary[7]" | "colors.mantine.colors.primary[8]" | "colors.mantine.colors.primary[9]" | "colors.mantine.colors.white" | "colors.mantine.colors.text" | "colors.mantine.colors.body" | "colors.mantine.colors.dimmed" | "colors.mantine.colors.defaultBorder" | "colors.mantine.colors.defaultColor" | "colors.mantine.colors.defaultHover" | "colors.mantine.colors.default" | "colors.mantine.colors.error" | "colors.mantine.colors.placeholder" | "colors.mantine.colors.gray" | "colors.mantine.colors.gray.filled" | "colors.mantine.colors.gray.filledHover" | "colors.mantine.colors.gray.light" | "colors.mantine.colors.gray.lightHover" | "colors.mantine.colors.gray.lightColor" | "colors.mantine.colors.gray.outline" | "colors.mantine.colors.gray.outlineHover" | "colors.mantine.colors.gray[0]" | "colors.mantine.colors.gray[1]" | "colors.mantine.colors.gray[2]" | "colors.mantine.colors.gray[3]" | "colors.mantine.colors.gray[4]" | "colors.mantine.colors.gray[5]" | "colors.mantine.colors.gray[6]" | "colors.mantine.colors.gray[7]" | "colors.mantine.colors.gray[8]" | "colors.mantine.colors.gray[9]" | "colors.mantine.colors.dark" | "colors.mantine.colors.dark.filled" | "colors.mantine.colors.dark.filledHover" | "colors.mantine.colors.dark.light" | "colors.mantine.colors.dark.lightHover" | "colors.mantine.colors.dark.lightColor" | "colors.mantine.colors.dark.outline" | "colors.mantine.colors.dark.outlineHover" | "colors.mantine.colors.dark[0]" | "colors.mantine.colors.dark[1]" | "colors.mantine.colors.dark[2]" | "colors.mantine.colors.dark[3]" | "colors.mantine.colors.dark[4]" | "colors.mantine.colors.dark[5]" | "colors.mantine.colors.dark[6]" | "colors.mantine.colors.dark[7]" | "colors.mantine.colors.dark[8]" | "colors.mantine.colors.dark[9]" | "colors.mantine.colors.orange" | "colors.mantine.colors.orange.filled" | "colors.mantine.colors.orange.filledHover" | "colors.mantine.colors.orange.light" | "colors.mantine.colors.orange.lightHover" | "colors.mantine.colors.orange.lightColor" | "colors.mantine.colors.orange.outline" | "colors.mantine.colors.orange.outlineHover" | "colors.mantine.colors.orange[0]" | "colors.mantine.colors.orange[1]" | "colors.mantine.colors.orange[2]" | "colors.mantine.colors.orange[3]" | "colors.mantine.colors.orange[4]" | "colors.mantine.colors.orange[5]" | "colors.mantine.colors.orange[6]" | "colors.mantine.colors.orange[7]" | "colors.mantine.colors.orange[8]" | "colors.mantine.colors.orange[9]" | "colors.mantine.colors.teal" | "colors.mantine.colors.teal.filled" | "colors.mantine.colors.teal.filledHover" | "colors.mantine.colors.teal.light" | "colors.mantine.colors.teal.lightHover" | "colors.mantine.colors.teal.lightColor" | "colors.mantine.colors.teal.outline" | "colors.mantine.colors.teal.outlineHover" | "colors.mantine.colors.teal[0]" | "colors.mantine.colors.teal[1]" | "colors.mantine.colors.teal[2]" | "colors.mantine.colors.teal[3]" | "colors.mantine.colors.teal[4]" | "colors.mantine.colors.teal[5]" | "colors.mantine.colors.teal[6]" | "colors.mantine.colors.teal[7]" | "colors.mantine.colors.teal[8]" | "colors.mantine.colors.teal[9]" | "colors.mantine.colors.red" | "colors.mantine.colors.red.filled" | "colors.mantine.colors.red.filledHover" | "colors.mantine.colors.red.light" | "colors.mantine.colors.red.lightHover" | "colors.mantine.colors.red.lightColor" | "colors.mantine.colors.red.outline" | "colors.mantine.colors.red.outlineHover" | "colors.mantine.colors.red[0]" | "colors.mantine.colors.red[1]" | "colors.mantine.colors.red[2]" | "colors.mantine.colors.red[3]" | "colors.mantine.colors.red[4]" | "colors.mantine.colors.red[5]" | "colors.mantine.colors.red[6]" | "colors.mantine.colors.red[7]" | "colors.mantine.colors.red[8]" | "colors.mantine.colors.red[9]" | "colors.mantine.colors.green" | "colors.mantine.colors.green.filled" | "colors.mantine.colors.green.filledHover" | "colors.mantine.colors.green.light" | "colors.mantine.colors.green.lightHover" | "colors.mantine.colors.green.lightColor" | "colors.mantine.colors.green.outline" | "colors.mantine.colors.green.outlineHover" | "colors.mantine.colors.green[0]" | "colors.mantine.colors.green[1]" | "colors.mantine.colors.green[2]" | "colors.mantine.colors.green[3]" | "colors.mantine.colors.green[4]" | "colors.mantine.colors.green[5]" | "colors.mantine.colors.green[6]" | "colors.mantine.colors.green[7]" | "colors.mantine.colors.green[8]" | "colors.mantine.colors.green[9]" | "colors.mantine.colors.yellow" | "colors.mantine.colors.yellow.filled" | "colors.mantine.colors.yellow.filledHover" | "colors.mantine.colors.yellow.light" | "colors.mantine.colors.yellow.lightHover" | "colors.mantine.colors.yellow.lightColor" | "colors.mantine.colors.yellow.outline" | "colors.mantine.colors.yellow.outlineHover" | "colors.mantine.colors.yellow[0]" | "colors.mantine.colors.yellow[1]" | "colors.mantine.colors.yellow[2]" | "colors.mantine.colors.yellow[3]" | "colors.mantine.colors.yellow[4]" | "colors.mantine.colors.yellow[5]" | "colors.mantine.colors.yellow[6]" | "colors.mantine.colors.yellow[7]" | "colors.mantine.colors.yellow[8]" | "colors.mantine.colors.yellow[9]" | "colors.transparent" | "fonts.body" | "fonts.likec4" | "fonts.likec4.element" | "fonts.likec4.compound" | "fonts.likec4.relation" | "easings.default" | "easings.in" | "easings.out" | "easings.inOut" | "durations.fastest" | "durations.faster" | "durations.fast" | "durations.normal" | "durations.slow" | "durations.slower" | "durations.slowest" | "breakpoints.xs" | "breakpoints.sm" | "breakpoints.md" | "breakpoints.lg" | "breakpoints.xl" | "sizes.breakpoint-xs" | "sizes.breakpoint-sm" | "sizes.breakpoint-md" | "sizes.breakpoint-lg" | "sizes.breakpoint-xl" | "fontSizes.likec4.textSize" | "colors.amber.1" | "colors.amber.2" | "colors.amber.3" | "colors.amber.4" | "colors.amber.5" | "colors.amber.6" | "colors.amber.7" | "colors.amber.8" | "colors.amber.9" | "colors.amber.10" | "colors.amber.11" | "colors.amber.12" | "colors.amber.light.1" | "colors.amber.light.2" | "colors.amber.light.3" | "colors.amber.light.4" | "colors.amber.light.5" | "colors.amber.light.6" | "colors.amber.light.7" | "colors.amber.light.8" | "colors.amber.light.9" | "colors.amber.light.10" | "colors.amber.light.11" | "colors.amber.light.12" | "colors.amber.light.a.1" | "colors.amber.light.a.2" | "colors.amber.light.a.3" | "colors.amber.light.a.4" | "colors.amber.light.a.5" | "colors.amber.light.a.6" | "colors.amber.light.a.7" | "colors.amber.light.a.8" | "colors.amber.light.a.9" | "colors.amber.light.a.10" | "colors.amber.light.a.11" | "colors.amber.light.a.12" | "colors.amber.light.p3.1" | "colors.amber.light.p3.2" | "colors.amber.light.p3.3" | "colors.amber.light.p3.4" | "colors.amber.light.p3.5" | "colors.amber.light.p3.6" | "colors.amber.light.p3.7" | "colors.amber.light.p3.8" | "colors.amber.light.p3.9" | "colors.amber.light.p3.10" | "colors.amber.light.p3.11" | "colors.amber.light.p3.12" | "colors.amber.light.p3.a.1" | "colors.amber.light.p3.a.2" | "colors.amber.light.p3.a.3" | "colors.amber.light.p3.a.4" | "colors.amber.light.p3.a.5" | "colors.amber.light.p3.a.6" | "colors.amber.light.p3.a.7" | "colors.amber.light.p3.a.8" | "colors.amber.light.p3.a.9" | "colors.amber.light.p3.a.10" | "colors.amber.light.p3.a.11" | "colors.amber.light.p3.a.12" | "colors.amber.dark.1" | "colors.amber.dark.2" | "colors.amber.dark.3" | "colors.amber.dark.4" | "colors.amber.dark.5" | "colors.amber.dark.6" | "colors.amber.dark.7" | "colors.amber.dark.8" | "colors.amber.dark.9" | "colors.amber.dark.10" | "colors.amber.dark.11" | "colors.amber.dark.12" | "colors.amber.dark.a.1" | "colors.amber.dark.a.2" | "colors.amber.dark.a.3" | "colors.amber.dark.a.4" | "colors.amber.dark.a.5" | "colors.amber.dark.a.6" | "colors.amber.dark.a.7" | "colors.amber.dark.a.8" | "colors.amber.dark.a.9" | "colors.amber.dark.a.10" | "colors.amber.dark.a.11" | "colors.amber.dark.a.12" | "colors.amber.dark.p3.1" | "colors.amber.dark.p3.2" | "colors.amber.dark.p3.3" | "colors.amber.dark.p3.4" | "colors.amber.dark.p3.5" | "colors.amber.dark.p3.6" | "colors.amber.dark.p3.7" | "colors.amber.dark.p3.8" | "colors.amber.dark.p3.9" | "colors.amber.dark.p3.10" | "colors.amber.dark.p3.11" | "colors.amber.dark.p3.12" | "colors.amber.dark.p3.a.1" | "colors.amber.dark.p3.a.2" | "colors.amber.dark.p3.a.3" | "colors.amber.dark.p3.a.4" | "colors.amber.dark.p3.a.5" | "colors.amber.dark.p3.a.6" | "colors.amber.dark.p3.a.7" | "colors.amber.dark.p3.a.8" | "colors.amber.dark.p3.a.9" | "colors.amber.dark.p3.a.10" | "colors.amber.dark.p3.a.11" | "colors.amber.dark.p3.a.12" | "colors.amber.a.1" | "colors.amber.a.2" | "colors.amber.a.3" | "colors.amber.a.4" | "colors.amber.a.5" | "colors.amber.a.6" | "colors.amber.a.7" | "colors.amber.a.8" | "colors.amber.a.9" | "colors.amber.a.10" | "colors.amber.a.11" | "colors.amber.a.12" | "colors.amber.p3.1" | "colors.amber.p3.2" | "colors.amber.p3.3" | "colors.amber.p3.4" | "colors.amber.p3.5" | "colors.amber.p3.6" | "colors.amber.p3.7" | "colors.amber.p3.8" | "colors.amber.p3.9" | "colors.amber.p3.10" | "colors.amber.p3.11" | "colors.amber.p3.12" | "colors.amber.p3.a.1" | "colors.amber.p3.a.2" | "colors.amber.p3.a.3" | "colors.amber.p3.a.4" | "colors.amber.p3.a.5" | "colors.amber.p3.a.6" | "colors.amber.p3.a.7" | "colors.amber.p3.a.8" | "colors.amber.p3.a.9" | "colors.amber.p3.a.10" | "colors.amber.p3.a.11" | "colors.amber.p3.a.12" | "colors.blue.1" | "colors.blue.2" | "colors.blue.3" | "colors.blue.4" | "colors.blue.5" | "colors.blue.6" | "colors.blue.7" | "colors.blue.8" | "colors.blue.9" | "colors.blue.10" | "colors.blue.11" | "colors.blue.12" | "colors.blue.light.1" | "colors.blue.light.2" | "colors.blue.light.3" | "colors.blue.light.4" | "colors.blue.light.5" | "colors.blue.light.6" | "colors.blue.light.7" | "colors.blue.light.8" | "colors.blue.light.9" | "colors.blue.light.10" | "colors.blue.light.11" | "colors.blue.light.12" | "colors.blue.light.a.1" | "colors.blue.light.a.2" | "colors.blue.light.a.3" | "colors.blue.light.a.4" | "colors.blue.light.a.5" | "colors.blue.light.a.6" | "colors.blue.light.a.7" | "colors.blue.light.a.8" | "colors.blue.light.a.9" | "colors.blue.light.a.10" | "colors.blue.light.a.11" | "colors.blue.light.a.12" | "colors.blue.light.p3.1" | "colors.blue.light.p3.2" | "colors.blue.light.p3.3" | "colors.blue.light.p3.4" | "colors.blue.light.p3.5" | "colors.blue.light.p3.6" | "colors.blue.light.p3.7" | "colors.blue.light.p3.8" | "colors.blue.light.p3.9" | "colors.blue.light.p3.10" | "colors.blue.light.p3.11" | "colors.blue.light.p3.12" | "colors.blue.light.p3.a.1" | "colors.blue.light.p3.a.2" | "colors.blue.light.p3.a.3" | "colors.blue.light.p3.a.4" | "colors.blue.light.p3.a.5" | "colors.blue.light.p3.a.6" | "colors.blue.light.p3.a.7" | "colors.blue.light.p3.a.8" | "colors.blue.light.p3.a.9" | "colors.blue.light.p3.a.10" | "colors.blue.light.p3.a.11" | "colors.blue.light.p3.a.12" | "colors.blue.dark.1" | "colors.blue.dark.2" | "colors.blue.dark.3" | "colors.blue.dark.4" | "colors.blue.dark.5" | "colors.blue.dark.6" | "colors.blue.dark.7" | "colors.blue.dark.8" | "colors.blue.dark.9" | "colors.blue.dark.10" | "colors.blue.dark.11" | "colors.blue.dark.12" | "colors.blue.dark.a.1" | "colors.blue.dark.a.2" | "colors.blue.dark.a.3" | "colors.blue.dark.a.4" | "colors.blue.dark.a.5" | "colors.blue.dark.a.6" | "colors.blue.dark.a.7" | "colors.blue.dark.a.8" | "colors.blue.dark.a.9" | "colors.blue.dark.a.10" | "colors.blue.dark.a.11" | "colors.blue.dark.a.12" | "colors.blue.dark.p3.1" | "colors.blue.dark.p3.2" | "colors.blue.dark.p3.3" | "colors.blue.dark.p3.4" | "colors.blue.dark.p3.5" | "colors.blue.dark.p3.6" | "colors.blue.dark.p3.7" | "colors.blue.dark.p3.8" | "colors.blue.dark.p3.9" | "colors.blue.dark.p3.10" | "colors.blue.dark.p3.11" | "colors.blue.dark.p3.12" | "colors.blue.dark.p3.a.1" | "colors.blue.dark.p3.a.2" | "colors.blue.dark.p3.a.3" | "colors.blue.dark.p3.a.4" | "colors.blue.dark.p3.a.5" | "colors.blue.dark.p3.a.6" | "colors.blue.dark.p3.a.7" | "colors.blue.dark.p3.a.8" | "colors.blue.dark.p3.a.9" | "colors.blue.dark.p3.a.10" | "colors.blue.dark.p3.a.11" | "colors.blue.dark.p3.a.12" | "colors.blue.a.1" | "colors.blue.a.2" | "colors.blue.a.3" | "colors.blue.a.4" | "colors.blue.a.5" | "colors.blue.a.6" | "colors.blue.a.7" | "colors.blue.a.8" | "colors.blue.a.9" | "colors.blue.a.10" | "colors.blue.a.11" | "colors.blue.a.12" | "colors.blue.p3.1" | "colors.blue.p3.2" | "colors.blue.p3.3" | "colors.blue.p3.4" | "colors.blue.p3.5" | "colors.blue.p3.6" | "colors.blue.p3.7" | "colors.blue.p3.8" | "colors.blue.p3.9" | "colors.blue.p3.10" | "colors.blue.p3.11" | "colors.blue.p3.12" | "colors.blue.p3.a.1" | "colors.blue.p3.a.2" | "colors.blue.p3.a.3" | "colors.blue.p3.a.4" | "colors.blue.p3.a.5" | "colors.blue.p3.a.6" | "colors.blue.p3.a.7" | "colors.blue.p3.a.8" | "colors.blue.p3.a.9" | "colors.blue.p3.a.10" | "colors.blue.p3.a.11" | "colors.blue.p3.a.12" | "colors.crimson.1" | "colors.crimson.2" | "colors.crimson.3" | "colors.crimson.4" | "colors.crimson.5" | "colors.crimson.6" | "colors.crimson.7" | "colors.crimson.8" | "colors.crimson.9" | "colors.crimson.10" | "colors.crimson.11" | "colors.crimson.12" | "colors.crimson.light.1" | "colors.crimson.light.2" | "colors.crimson.light.3" | "colors.crimson.light.4" | "colors.crimson.light.5" | "colors.crimson.light.6" | "colors.crimson.light.7" | "colors.crimson.light.8" | "colors.crimson.light.9" | "colors.crimson.light.10" | "colors.crimson.light.11" | "colors.crimson.light.12" | "colors.crimson.light.a.1" | "colors.crimson.light.a.2" | "colors.crimson.light.a.3" | "colors.crimson.light.a.4" | "colors.crimson.light.a.5" | "colors.crimson.light.a.6" | "colors.crimson.light.a.7" | "colors.crimson.light.a.8" | "colors.crimson.light.a.9" | "colors.crimson.light.a.10" | "colors.crimson.light.a.11" | "colors.crimson.light.a.12" | "colors.crimson.light.p3.1" | "colors.crimson.light.p3.2" | "colors.crimson.light.p3.3" | "colors.crimson.light.p3.4" | "colors.crimson.light.p3.5" | "colors.crimson.light.p3.6" | "colors.crimson.light.p3.7" | "colors.crimson.light.p3.8" | "colors.crimson.light.p3.9" | "colors.crimson.light.p3.10" | "colors.crimson.light.p3.11" | "colors.crimson.light.p3.12" | "colors.crimson.light.p3.a.1" | "colors.crimson.light.p3.a.2" | "colors.crimson.light.p3.a.3" | "colors.crimson.light.p3.a.4" | "colors.crimson.light.p3.a.5" | "colors.crimson.light.p3.a.6" | "colors.crimson.light.p3.a.7" | "colors.crimson.light.p3.a.8" | "colors.crimson.light.p3.a.9" | "colors.crimson.light.p3.a.10" | "colors.crimson.light.p3.a.11" | "colors.crimson.light.p3.a.12" | "colors.crimson.dark.1" | "colors.crimson.dark.2" | "colors.crimson.dark.3" | "colors.crimson.dark.4" | "colors.crimson.dark.5" | "colors.crimson.dark.6" | "colors.crimson.dark.7" | "colors.crimson.dark.8" | "colors.crimson.dark.9" | "colors.crimson.dark.10" | "colors.crimson.dark.11" | "colors.crimson.dark.12" | "colors.crimson.dark.a.1" | "colors.crimson.dark.a.2" | "colors.crimson.dark.a.3" | "colors.crimson.dark.a.4" | "colors.crimson.dark.a.5" | "colors.crimson.dark.a.6" | "colors.crimson.dark.a.7" | "colors.crimson.dark.a.8" | "colors.crimson.dark.a.9" | "colors.crimson.dark.a.10" | "colors.crimson.dark.a.11" | "colors.crimson.dark.a.12" | "colors.crimson.dark.p3.1" | "colors.crimson.dark.p3.2" | "colors.crimson.dark.p3.3" | "colors.crimson.dark.p3.4" | "colors.crimson.dark.p3.5" | "colors.crimson.dark.p3.6" | "colors.crimson.dark.p3.7" | "colors.crimson.dark.p3.8" | "colors.crimson.dark.p3.9" | "colors.crimson.dark.p3.10" | "colors.crimson.dark.p3.11" | "colors.crimson.dark.p3.12" | "colors.crimson.dark.p3.a.1" | "colors.crimson.dark.p3.a.2" | "colors.crimson.dark.p3.a.3" | "colors.crimson.dark.p3.a.4" | "colors.crimson.dark.p3.a.5" | "colors.crimson.dark.p3.a.6" | "colors.crimson.dark.p3.a.7" | "colors.crimson.dark.p3.a.8" | "colors.crimson.dark.p3.a.9" | "colors.crimson.dark.p3.a.10" | "colors.crimson.dark.p3.a.11" | "colors.crimson.dark.p3.a.12" | "colors.crimson.a.1" | "colors.crimson.a.2" | "colors.crimson.a.3" | "colors.crimson.a.4" | "colors.crimson.a.5" | "colors.crimson.a.6" | "colors.crimson.a.7" | "colors.crimson.a.8" | "colors.crimson.a.9" | "colors.crimson.a.10" | "colors.crimson.a.11" | "colors.crimson.a.12" | "colors.crimson.p3.1" | "colors.crimson.p3.2" | "colors.crimson.p3.3" | "colors.crimson.p3.4" | "colors.crimson.p3.5" | "colors.crimson.p3.6" | "colors.crimson.p3.7" | "colors.crimson.p3.8" | "colors.crimson.p3.9" | "colors.crimson.p3.10" | "colors.crimson.p3.11" | "colors.crimson.p3.12" | "colors.crimson.p3.a.1" | "colors.crimson.p3.a.2" | "colors.crimson.p3.a.3" | "colors.crimson.p3.a.4" | "colors.crimson.p3.a.5" | "colors.crimson.p3.a.6" | "colors.crimson.p3.a.7" | "colors.crimson.p3.a.8" | "colors.crimson.p3.a.9" | "colors.crimson.p3.a.10" | "colors.crimson.p3.a.11" | "colors.crimson.p3.a.12" | "colors.grass.1" | "colors.grass.2" | "colors.grass.3" | "colors.grass.4" | "colors.grass.5" | "colors.grass.6" | "colors.grass.7" | "colors.grass.8" | "colors.grass.9" | "colors.grass.10" | "colors.grass.11" | "colors.grass.12" | "colors.grass.light.1" | "colors.grass.light.2" | "colors.grass.light.3" | "colors.grass.light.4" | "colors.grass.light.5" | "colors.grass.light.6" | "colors.grass.light.7" | "colors.grass.light.8" | "colors.grass.light.9" | "colors.grass.light.10" | "colors.grass.light.11" | "colors.grass.light.12" | "colors.grass.light.a.1" | "colors.grass.light.a.2" | "colors.grass.light.a.3" | "colors.grass.light.a.4" | "colors.grass.light.a.5" | "colors.grass.light.a.6" | "colors.grass.light.a.7" | "colors.grass.light.a.8" | "colors.grass.light.a.9" | "colors.grass.light.a.10" | "colors.grass.light.a.11" | "colors.grass.light.a.12" | "colors.grass.light.p3.1" | "colors.grass.light.p3.2" | "colors.grass.light.p3.3" | "colors.grass.light.p3.4" | "colors.grass.light.p3.5" | "colors.grass.light.p3.6" | "colors.grass.light.p3.7" | "colors.grass.light.p3.8" | "colors.grass.light.p3.9" | "colors.grass.light.p3.10" | "colors.grass.light.p3.11" | "colors.grass.light.p3.12" | "colors.grass.light.p3.a.1" | "colors.grass.light.p3.a.2" | "colors.grass.light.p3.a.3" | "colors.grass.light.p3.a.4" | "colors.grass.light.p3.a.5" | "colors.grass.light.p3.a.6" | "colors.grass.light.p3.a.7" | "colors.grass.light.p3.a.8" | "colors.grass.light.p3.a.9" | "colors.grass.light.p3.a.10" | "colors.grass.light.p3.a.11" | "colors.grass.light.p3.a.12" | "colors.grass.dark.1" | "colors.grass.dark.2" | "colors.grass.dark.3" | "colors.grass.dark.4" | "colors.grass.dark.5" | "colors.grass.dark.6" | "colors.grass.dark.7" | "colors.grass.dark.8" | "colors.grass.dark.9" | "colors.grass.dark.10" | "colors.grass.dark.11" | "colors.grass.dark.12" | "colors.grass.dark.a.1" | "colors.grass.dark.a.2" | "colors.grass.dark.a.3" | "colors.grass.dark.a.4" | "colors.grass.dark.a.5" | "colors.grass.dark.a.6" | "colors.grass.dark.a.7" | "colors.grass.dark.a.8" | "colors.grass.dark.a.9" | "colors.grass.dark.a.10" | "colors.grass.dark.a.11" | "colors.grass.dark.a.12" | "colors.grass.dark.p3.1" | "colors.grass.dark.p3.2" | "colors.grass.dark.p3.3" | "colors.grass.dark.p3.4" | "colors.grass.dark.p3.5" | "colors.grass.dark.p3.6" | "colors.grass.dark.p3.7" | "colors.grass.dark.p3.8" | "colors.grass.dark.p3.9" | "colors.grass.dark.p3.10" | "colors.grass.dark.p3.11" | "colors.grass.dark.p3.12" | "colors.grass.dark.p3.a.1" | "colors.grass.dark.p3.a.2" | "colors.grass.dark.p3.a.3" | "colors.grass.dark.p3.a.4" | "colors.grass.dark.p3.a.5" | "colors.grass.dark.p3.a.6" | "colors.grass.dark.p3.a.7" | "colors.grass.dark.p3.a.8" | "colors.grass.dark.p3.a.9" | "colors.grass.dark.p3.a.10" | "colors.grass.dark.p3.a.11" | "colors.grass.dark.p3.a.12" | "colors.grass.a.1" | "colors.grass.a.2" | "colors.grass.a.3" | "colors.grass.a.4" | "colors.grass.a.5" | "colors.grass.a.6" | "colors.grass.a.7" | "colors.grass.a.8" | "colors.grass.a.9" | "colors.grass.a.10" | "colors.grass.a.11" | "colors.grass.a.12" | "colors.grass.p3.1" | "colors.grass.p3.2" | "colors.grass.p3.3" | "colors.grass.p3.4" | "colors.grass.p3.5" | "colors.grass.p3.6" | "colors.grass.p3.7" | "colors.grass.p3.8" | "colors.grass.p3.9" | "colors.grass.p3.10" | "colors.grass.p3.11" | "colors.grass.p3.12" | "colors.grass.p3.a.1" | "colors.grass.p3.a.2" | "colors.grass.p3.a.3" | "colors.grass.p3.a.4" | "colors.grass.p3.a.5" | "colors.grass.p3.a.6" | "colors.grass.p3.a.7" | "colors.grass.p3.a.8" | "colors.grass.p3.a.9" | "colors.grass.p3.a.10" | "colors.grass.p3.a.11" | "colors.grass.p3.a.12" | "colors.indigo.1" | "colors.indigo.2" | "colors.indigo.3" | "colors.indigo.4" | "colors.indigo.5" | "colors.indigo.6" | "colors.indigo.7" | "colors.indigo.8" | "colors.indigo.9" | "colors.indigo.10" | "colors.indigo.11" | "colors.indigo.12" | "colors.indigo.light.1" | "colors.indigo.light.2" | "colors.indigo.light.3" | "colors.indigo.light.4" | "colors.indigo.light.5" | "colors.indigo.light.6" | "colors.indigo.light.7" | "colors.indigo.light.8" | "colors.indigo.light.9" | "colors.indigo.light.10" | "colors.indigo.light.11" | "colors.indigo.light.12" | "colors.indigo.light.a.1" | "colors.indigo.light.a.2" | "colors.indigo.light.a.3" | "colors.indigo.light.a.4" | "colors.indigo.light.a.5" | "colors.indigo.light.a.6" | "colors.indigo.light.a.7" | "colors.indigo.light.a.8" | "colors.indigo.light.a.9" | "colors.indigo.light.a.10" | "colors.indigo.light.a.11" | "colors.indigo.light.a.12" | "colors.indigo.light.p3.1" | "colors.indigo.light.p3.2" | "colors.indigo.light.p3.3" | "colors.indigo.light.p3.4" | "colors.indigo.light.p3.5" | "colors.indigo.light.p3.6" | "colors.indigo.light.p3.7" | "colors.indigo.light.p3.8" | "colors.indigo.light.p3.9" | "colors.indigo.light.p3.10" | "colors.indigo.light.p3.11" | "colors.indigo.light.p3.12" | "colors.indigo.light.p3.a.1" | "colors.indigo.light.p3.a.2" | "colors.indigo.light.p3.a.3" | "colors.indigo.light.p3.a.4" | "colors.indigo.light.p3.a.5" | "colors.indigo.light.p3.a.6" | "colors.indigo.light.p3.a.7" | "colors.indigo.light.p3.a.8" | "colors.indigo.light.p3.a.9" | "colors.indigo.light.p3.a.10" | "colors.indigo.light.p3.a.11" | "colors.indigo.light.p3.a.12" | "colors.indigo.dark.1" | "colors.indigo.dark.2" | "colors.indigo.dark.3" | "colors.indigo.dark.4" | "colors.indigo.dark.5" | "colors.indigo.dark.6" | "colors.indigo.dark.7" | "colors.indigo.dark.8" | "colors.indigo.dark.9" | "colors.indigo.dark.10" | "colors.indigo.dark.11" | "colors.indigo.dark.12" | "colors.indigo.dark.a.1" | "colors.indigo.dark.a.2" | "colors.indigo.dark.a.3" | "colors.indigo.dark.a.4" | "colors.indigo.dark.a.5" | "colors.indigo.dark.a.6" | "colors.indigo.dark.a.7" | "colors.indigo.dark.a.8" | "colors.indigo.dark.a.9" | "colors.indigo.dark.a.10" | "colors.indigo.dark.a.11" | "colors.indigo.dark.a.12" | "colors.indigo.dark.p3.1" | "colors.indigo.dark.p3.2" | "colors.indigo.dark.p3.3" | "colors.indigo.dark.p3.4" | "colors.indigo.dark.p3.5" | "colors.indigo.dark.p3.6" | "colors.indigo.dark.p3.7" | "colors.indigo.dark.p3.8" | "colors.indigo.dark.p3.9" | "colors.indigo.dark.p3.10" | "colors.indigo.dark.p3.11" | "colors.indigo.dark.p3.12" | "colors.indigo.dark.p3.a.1" | "colors.indigo.dark.p3.a.2" | "colors.indigo.dark.p3.a.3" | "colors.indigo.dark.p3.a.4" | "colors.indigo.dark.p3.a.5" | "colors.indigo.dark.p3.a.6" | "colors.indigo.dark.p3.a.7" | "colors.indigo.dark.p3.a.8" | "colors.indigo.dark.p3.a.9" | "colors.indigo.dark.p3.a.10" | "colors.indigo.dark.p3.a.11" | "colors.indigo.dark.p3.a.12" | "colors.indigo.a.1" | "colors.indigo.a.2" | "colors.indigo.a.3" | "colors.indigo.a.4" | "colors.indigo.a.5" | "colors.indigo.a.6" | "colors.indigo.a.7" | "colors.indigo.a.8" | "colors.indigo.a.9" | "colors.indigo.a.10" | "colors.indigo.a.11" | "colors.indigo.a.12" | "colors.indigo.p3.1" | "colors.indigo.p3.2" | "colors.indigo.p3.3" | "colors.indigo.p3.4" | "colors.indigo.p3.5" | "colors.indigo.p3.6" | "colors.indigo.p3.7" | "colors.indigo.p3.8" | "colors.indigo.p3.9" | "colors.indigo.p3.10" | "colors.indigo.p3.11" | "colors.indigo.p3.12" | "colors.indigo.p3.a.1" | "colors.indigo.p3.a.2" | "colors.indigo.p3.a.3" | "colors.indigo.p3.a.4" | "colors.indigo.p3.a.5" | "colors.indigo.p3.a.6" | "colors.indigo.p3.a.7" | "colors.indigo.p3.a.8" | "colors.indigo.p3.a.9" | "colors.indigo.p3.a.10" | "colors.indigo.p3.a.11" | "colors.indigo.p3.a.12" | "colors.lime.1" | "colors.lime.2" | "colors.lime.3" | "colors.lime.4" | "colors.lime.5" | "colors.lime.6" | "colors.lime.7" | "colors.lime.8" | "colors.lime.9" | "colors.lime.10" | "colors.lime.11" | "colors.lime.12" | "colors.lime.light.1" | "colors.lime.light.2" | "colors.lime.light.3" | "colors.lime.light.4" | "colors.lime.light.5" | "colors.lime.light.6" | "colors.lime.light.7" | "colors.lime.light.8" | "colors.lime.light.9" | "colors.lime.light.10" | "colors.lime.light.11" | "colors.lime.light.12" | "colors.lime.light.a.1" | "colors.lime.light.a.2" | "colors.lime.light.a.3" | "colors.lime.light.a.4" | "colors.lime.light.a.5" | "colors.lime.light.a.6" | "colors.lime.light.a.7" | "colors.lime.light.a.8" | "colors.lime.light.a.9" | "colors.lime.light.a.10" | "colors.lime.light.a.11" | "colors.lime.light.a.12" | "colors.lime.light.p3.1" | "colors.lime.light.p3.2" | "colors.lime.light.p3.3" | "colors.lime.light.p3.4" | "colors.lime.light.p3.5" | "colors.lime.light.p3.6" | "colors.lime.light.p3.7" | "colors.lime.light.p3.8" | "colors.lime.light.p3.9" | "colors.lime.light.p3.10" | "colors.lime.light.p3.11" | "colors.lime.light.p3.12" | "colors.lime.light.p3.a.1" | "colors.lime.light.p3.a.2" | "colors.lime.light.p3.a.3" | "colors.lime.light.p3.a.4" | "colors.lime.light.p3.a.5" | "colors.lime.light.p3.a.6" | "colors.lime.light.p3.a.7" | "colors.lime.light.p3.a.8" | "colors.lime.light.p3.a.9" | "colors.lime.light.p3.a.10" | "colors.lime.light.p3.a.11" | "colors.lime.light.p3.a.12" | "colors.lime.dark.1" | "colors.lime.dark.2" | "colors.lime.dark.3" | "colors.lime.dark.4" | "colors.lime.dark.5" | "colors.lime.dark.6" | "colors.lime.dark.7" | "colors.lime.dark.8" | "colors.lime.dark.9" | "colors.lime.dark.10" | "colors.lime.dark.11" | "colors.lime.dark.12" | "colors.lime.dark.a.1" | "colors.lime.dark.a.2" | "colors.lime.dark.a.3" | "colors.lime.dark.a.4" | "colors.lime.dark.a.5" | "colors.lime.dark.a.6" | "colors.lime.dark.a.7" | "colors.lime.dark.a.8" | "colors.lime.dark.a.9" | "colors.lime.dark.a.10" | "colors.lime.dark.a.11" | "colors.lime.dark.a.12" | "colors.lime.dark.p3.1" | "colors.lime.dark.p3.2" | "colors.lime.dark.p3.3" | "colors.lime.dark.p3.4" | "colors.lime.dark.p3.5" | "colors.lime.dark.p3.6" | "colors.lime.dark.p3.7" | "colors.lime.dark.p3.8" | "colors.lime.dark.p3.9" | "colors.lime.dark.p3.10" | "colors.lime.dark.p3.11" | "colors.lime.dark.p3.12" | "colors.lime.dark.p3.a.1" | "colors.lime.dark.p3.a.2" | "colors.lime.dark.p3.a.3" | "colors.lime.dark.p3.a.4" | "colors.lime.dark.p3.a.5" | "colors.lime.dark.p3.a.6" | "colors.lime.dark.p3.a.7" | "colors.lime.dark.p3.a.8" | "colors.lime.dark.p3.a.9" | "colors.lime.dark.p3.a.10" | "colors.lime.dark.p3.a.11" | "colors.lime.dark.p3.a.12" | "colors.lime.a.1" | "colors.lime.a.2" | "colors.lime.a.3" | "colors.lime.a.4" | "colors.lime.a.5" | "colors.lime.a.6" | "colors.lime.a.7" | "colors.lime.a.8" | "colors.lime.a.9" | "colors.lime.a.10" | "colors.lime.a.11" | "colors.lime.a.12" | "colors.lime.p3.1" | "colors.lime.p3.2" | "colors.lime.p3.3" | "colors.lime.p3.4" | "colors.lime.p3.5" | "colors.lime.p3.6" | "colors.lime.p3.7" | "colors.lime.p3.8" | "colors.lime.p3.9" | "colors.lime.p3.10" | "colors.lime.p3.11" | "colors.lime.p3.12" | "colors.lime.p3.a.1" | "colors.lime.p3.a.2" | "colors.lime.p3.a.3" | "colors.lime.p3.a.4" | "colors.lime.p3.a.5" | "colors.lime.p3.a.6" | "colors.lime.p3.a.7" | "colors.lime.p3.a.8" | "colors.lime.p3.a.9" | "colors.lime.p3.a.10" | "colors.lime.p3.a.11" | "colors.lime.p3.a.12" | "colors.orange.1" | "colors.orange.2" | "colors.orange.3" | "colors.orange.4" | "colors.orange.5" | "colors.orange.6" | "colors.orange.7" | "colors.orange.8" | "colors.orange.9" | "colors.orange.10" | "colors.orange.11" | "colors.orange.12" | "colors.orange.light.1" | "colors.orange.light.2" | "colors.orange.light.3" | "colors.orange.light.4" | "colors.orange.light.5" | "colors.orange.light.6" | "colors.orange.light.7" | "colors.orange.light.8" | "colors.orange.light.9" | "colors.orange.light.10" | "colors.orange.light.11" | "colors.orange.light.12" | "colors.orange.light.a.1" | "colors.orange.light.a.2" | "colors.orange.light.a.3" | "colors.orange.light.a.4" | "colors.orange.light.a.5" | "colors.orange.light.a.6" | "colors.orange.light.a.7" | "colors.orange.light.a.8" | "colors.orange.light.a.9" | "colors.orange.light.a.10" | "colors.orange.light.a.11" | "colors.orange.light.a.12" | "colors.orange.light.p3.1" | "colors.orange.light.p3.2" | "colors.orange.light.p3.3" | "colors.orange.light.p3.4" | "colors.orange.light.p3.5" | "colors.orange.light.p3.6" | "colors.orange.light.p3.7" | "colors.orange.light.p3.8" | "colors.orange.light.p3.9" | "colors.orange.light.p3.10" | "colors.orange.light.p3.11" | "colors.orange.light.p3.12" | "colors.orange.light.p3.a.1" | "colors.orange.light.p3.a.2" | "colors.orange.light.p3.a.3" | "colors.orange.light.p3.a.4" | "colors.orange.light.p3.a.5" | "colors.orange.light.p3.a.6" | "colors.orange.light.p3.a.7" | "colors.orange.light.p3.a.8" | "colors.orange.light.p3.a.9" | "colors.orange.light.p3.a.10" | "colors.orange.light.p3.a.11" | "colors.orange.light.p3.a.12" | "colors.orange.dark.1" | "colors.orange.dark.2" | "colors.orange.dark.3" | "colors.orange.dark.4" | "colors.orange.dark.5" | "colors.orange.dark.6" | "colors.orange.dark.7" | "colors.orange.dark.8" | "colors.orange.dark.9" | "colors.orange.dark.10" | "colors.orange.dark.11" | "colors.orange.dark.12" | "colors.orange.dark.a.1" | "colors.orange.dark.a.2" | "colors.orange.dark.a.3" | "colors.orange.dark.a.4" | "colors.orange.dark.a.5" | "colors.orange.dark.a.6" | "colors.orange.dark.a.7" | "colors.orange.dark.a.8" | "colors.orange.dark.a.9" | "colors.orange.dark.a.10" | "colors.orange.dark.a.11" | "colors.orange.dark.a.12" | "colors.orange.dark.p3.1" | "colors.orange.dark.p3.2" | "colors.orange.dark.p3.3" | "colors.orange.dark.p3.4" | "colors.orange.dark.p3.5" | "colors.orange.dark.p3.6" | "colors.orange.dark.p3.7" | "colors.orange.dark.p3.8" | "colors.orange.dark.p3.9" | "colors.orange.dark.p3.10" | "colors.orange.dark.p3.11" | "colors.orange.dark.p3.12" | "colors.orange.dark.p3.a.1" | "colors.orange.dark.p3.a.2" | "colors.orange.dark.p3.a.3" | "colors.orange.dark.p3.a.4" | "colors.orange.dark.p3.a.5" | "colors.orange.dark.p3.a.6" | "colors.orange.dark.p3.a.7" | "colors.orange.dark.p3.a.8" | "colors.orange.dark.p3.a.9" | "colors.orange.dark.p3.a.10" | "colors.orange.dark.p3.a.11" | "colors.orange.dark.p3.a.12" | "colors.orange.a.1" | "colors.orange.a.2" | "colors.orange.a.3" | "colors.orange.a.4" | "colors.orange.a.5" | "colors.orange.a.6" | "colors.orange.a.7" | "colors.orange.a.8" | "colors.orange.a.9" | "colors.orange.a.10" | "colors.orange.a.11" | "colors.orange.a.12" | "colors.orange.p3.1" | "colors.orange.p3.2" | "colors.orange.p3.3" | "colors.orange.p3.4" | "colors.orange.p3.5" | "colors.orange.p3.6" | "colors.orange.p3.7" | "colors.orange.p3.8" | "colors.orange.p3.9" | "colors.orange.p3.10" | "colors.orange.p3.11" | "colors.orange.p3.12" | "colors.orange.p3.a.1" | "colors.orange.p3.a.2" | "colors.orange.p3.a.3" | "colors.orange.p3.a.4" | "colors.orange.p3.a.5" | "colors.orange.p3.a.6" | "colors.orange.p3.a.7" | "colors.orange.p3.a.8" | "colors.orange.p3.a.9" | "colors.orange.p3.a.10" | "colors.orange.p3.a.11" | "colors.orange.p3.a.12" | "colors.pink.1" | "colors.pink.2" | "colors.pink.3" | "colors.pink.4" | "colors.pink.5" | "colors.pink.6" | "colors.pink.7" | "colors.pink.8" | "colors.pink.9" | "colors.pink.10" | "colors.pink.11" | "colors.pink.12" | "colors.pink.light.1" | "colors.pink.light.2" | "colors.pink.light.3" | "colors.pink.light.4" | "colors.pink.light.5" | "colors.pink.light.6" | "colors.pink.light.7" | "colors.pink.light.8" | "colors.pink.light.9" | "colors.pink.light.10" | "colors.pink.light.11" | "colors.pink.light.12" | "colors.pink.light.a.1" | "colors.pink.light.a.2" | "colors.pink.light.a.3" | "colors.pink.light.a.4" | "colors.pink.light.a.5" | "colors.pink.light.a.6" | "colors.pink.light.a.7" | "colors.pink.light.a.8" | "colors.pink.light.a.9" | "colors.pink.light.a.10" | "colors.pink.light.a.11" | "colors.pink.light.a.12" | "colors.pink.light.p3.1" | "colors.pink.light.p3.2" | "colors.pink.light.p3.3" | "colors.pink.light.p3.4" | "colors.pink.light.p3.5" | "colors.pink.light.p3.6" | "colors.pink.light.p3.7" | "colors.pink.light.p3.8" | "colors.pink.light.p3.9" | "colors.pink.light.p3.10" | "colors.pink.light.p3.11" | "colors.pink.light.p3.12" | "colors.pink.light.p3.a.1" | "colors.pink.light.p3.a.2" | "colors.pink.light.p3.a.3" | "colors.pink.light.p3.a.4" | "colors.pink.light.p3.a.5" | "colors.pink.light.p3.a.6" | "colors.pink.light.p3.a.7" | "colors.pink.light.p3.a.8" | "colors.pink.light.p3.a.9" | "colors.pink.light.p3.a.10" | "colors.pink.light.p3.a.11" | "colors.pink.light.p3.a.12" | "colors.pink.dark.1" | "colors.pink.dark.2" | "colors.pink.dark.3" | "colors.pink.dark.4" | "colors.pink.dark.5" | "colors.pink.dark.6" | "colors.pink.dark.7" | "colors.pink.dark.8" | "colors.pink.dark.9" | "colors.pink.dark.10" | "colors.pink.dark.11" | "colors.pink.dark.12" | "colors.pink.dark.a.1" | "colors.pink.dark.a.2" | "colors.pink.dark.a.3" | "colors.pink.dark.a.4" | "colors.pink.dark.a.5" | "colors.pink.dark.a.6" | "colors.pink.dark.a.7" | "colors.pink.dark.a.8" | "colors.pink.dark.a.9" | "colors.pink.dark.a.10" | "colors.pink.dark.a.11" | "colors.pink.dark.a.12" | "colors.pink.dark.p3.1" | "colors.pink.dark.p3.2" | "colors.pink.dark.p3.3" | "colors.pink.dark.p3.4" | "colors.pink.dark.p3.5" | "colors.pink.dark.p3.6" | "colors.pink.dark.p3.7" | "colors.pink.dark.p3.8" | "colors.pink.dark.p3.9" | "colors.pink.dark.p3.10" | "colors.pink.dark.p3.11" | "colors.pink.dark.p3.12" | "colors.pink.dark.p3.a.1" | "colors.pink.dark.p3.a.2" | "colors.pink.dark.p3.a.3" | "colors.pink.dark.p3.a.4" | "colors.pink.dark.p3.a.5" | "colors.pink.dark.p3.a.6" | "colors.pink.dark.p3.a.7" | "colors.pink.dark.p3.a.8" | "colors.pink.dark.p3.a.9" | "colors.pink.dark.p3.a.10" | "colors.pink.dark.p3.a.11" | "colors.pink.dark.p3.a.12" | "colors.pink.a.1" | "colors.pink.a.2" | "colors.pink.a.3" | "colors.pink.a.4" | "colors.pink.a.5" | "colors.pink.a.6" | "colors.pink.a.7" | "colors.pink.a.8" | "colors.pink.a.9" | "colors.pink.a.10" | "colors.pink.a.11" | "colors.pink.a.12" | "colors.pink.p3.1" | "colors.pink.p3.2" | "colors.pink.p3.3" | "colors.pink.p3.4" | "colors.pink.p3.5" | "colors.pink.p3.6" | "colors.pink.p3.7" | "colors.pink.p3.8" | "colors.pink.p3.9" | "colors.pink.p3.10" | "colors.pink.p3.11" | "colors.pink.p3.12" | "colors.pink.p3.a.1" | "colors.pink.p3.a.2" | "colors.pink.p3.a.3" | "colors.pink.p3.a.4" | "colors.pink.p3.a.5" | "colors.pink.p3.a.6" | "colors.pink.p3.a.7" | "colors.pink.p3.a.8" | "colors.pink.p3.a.9" | "colors.pink.p3.a.10" | "colors.pink.p3.a.11" | "colors.pink.p3.a.12" | "colors.purple.1" | "colors.purple.2" | "colors.purple.3" | "colors.purple.4" | "colors.purple.5" | "colors.purple.6" | "colors.purple.7" | "colors.purple.8" | "colors.purple.9" | "colors.purple.10" | "colors.purple.11" | "colors.purple.12" | "colors.purple.light.1" | "colors.purple.light.2" | "colors.purple.light.3" | "colors.purple.light.4" | "colors.purple.light.5" | "colors.purple.light.6" | "colors.purple.light.7" | "colors.purple.light.8" | "colors.purple.light.9" | "colors.purple.light.10" | "colors.purple.light.11" | "colors.purple.light.12" | "colors.purple.light.a.1" | "colors.purple.light.a.2" | "colors.purple.light.a.3" | "colors.purple.light.a.4" | "colors.purple.light.a.5" | "colors.purple.light.a.6" | "colors.purple.light.a.7" | "colors.purple.light.a.8" | "colors.purple.light.a.9" | "colors.purple.light.a.10" | "colors.purple.light.a.11" | "colors.purple.light.a.12" | "colors.purple.light.p3.1" | "colors.purple.light.p3.2" | "colors.purple.light.p3.3" | "colors.purple.light.p3.4" | "colors.purple.light.p3.5" | "colors.purple.light.p3.6" | "colors.purple.light.p3.7" | "colors.purple.light.p3.8" | "colors.purple.light.p3.9" | "colors.purple.light.p3.10" | "colors.purple.light.p3.11" | "colors.purple.light.p3.12" | "colors.purple.light.p3.a.1" | "colors.purple.light.p3.a.2" | "colors.purple.light.p3.a.3" | "colors.purple.light.p3.a.4" | "colors.purple.light.p3.a.5" | "colors.purple.light.p3.a.6" | "colors.purple.light.p3.a.7" | "colors.purple.light.p3.a.8" | "colors.purple.light.p3.a.9" | "colors.purple.light.p3.a.10" | "colors.purple.light.p3.a.11" | "colors.purple.light.p3.a.12" | "colors.purple.dark.1" | "colors.purple.dark.2" | "colors.purple.dark.3" | "colors.purple.dark.4" | "colors.purple.dark.5" | "colors.purple.dark.6" | "colors.purple.dark.7" | "colors.purple.dark.8" | "colors.purple.dark.9" | "colors.purple.dark.10" | "colors.purple.dark.11" | "colors.purple.dark.12" | "colors.purple.dark.a.1" | "colors.purple.dark.a.2" | "colors.purple.dark.a.3" | "colors.purple.dark.a.4" | "colors.purple.dark.a.5" | "colors.purple.dark.a.6" | "colors.purple.dark.a.7" | "colors.purple.dark.a.8" | "colors.purple.dark.a.9" | "colors.purple.dark.a.10" | "colors.purple.dark.a.11" | "colors.purple.dark.a.12" | "colors.purple.dark.p3.1" | "colors.purple.dark.p3.2" | "colors.purple.dark.p3.3" | "colors.purple.dark.p3.4" | "colors.purple.dark.p3.5" | "colors.purple.dark.p3.6" | "colors.purple.dark.p3.7" | "colors.purple.dark.p3.8" | "colors.purple.dark.p3.9" | "colors.purple.dark.p3.10" | "colors.purple.dark.p3.11" | "colors.purple.dark.p3.12" | "colors.purple.dark.p3.a.1" | "colors.purple.dark.p3.a.2" | "colors.purple.dark.p3.a.3" | "colors.purple.dark.p3.a.4" | "colors.purple.dark.p3.a.5" | "colors.purple.dark.p3.a.6" | "colors.purple.dark.p3.a.7" | "colors.purple.dark.p3.a.8" | "colors.purple.dark.p3.a.9" | "colors.purple.dark.p3.a.10" | "colors.purple.dark.p3.a.11" | "colors.purple.dark.p3.a.12" | "colors.purple.a.1" | "colors.purple.a.2" | "colors.purple.a.3" | "colors.purple.a.4" | "colors.purple.a.5" | "colors.purple.a.6" | "colors.purple.a.7" | "colors.purple.a.8" | "colors.purple.a.9" | "colors.purple.a.10" | "colors.purple.a.11" | "colors.purple.a.12" | "colors.purple.p3.1" | "colors.purple.p3.2" | "colors.purple.p3.3" | "colors.purple.p3.4" | "colors.purple.p3.5" | "colors.purple.p3.6" | "colors.purple.p3.7" | "colors.purple.p3.8" | "colors.purple.p3.9" | "colors.purple.p3.10" | "colors.purple.p3.11" | "colors.purple.p3.12" | "colors.purple.p3.a.1" | "colors.purple.p3.a.2" | "colors.purple.p3.a.3" | "colors.purple.p3.a.4" | "colors.purple.p3.a.5" | "colors.purple.p3.a.6" | "colors.purple.p3.a.7" | "colors.purple.p3.a.8" | "colors.purple.p3.a.9" | "colors.purple.p3.a.10" | "colors.purple.p3.a.11" | "colors.purple.p3.a.12" | "colors.red.1" | "colors.red.2" | "colors.red.3" | "colors.red.4" | "colors.red.5" | "colors.red.6" | "colors.red.7" | "colors.red.8" | "colors.red.9" | "colors.red.10" | "colors.red.11" | "colors.red.12" | "colors.red.light.1" | "colors.red.light.2" | "colors.red.light.3" | "colors.red.light.4" | "colors.red.light.5" | "colors.red.light.6" | "colors.red.light.7" | "colors.red.light.8" | "colors.red.light.9" | "colors.red.light.10" | "colors.red.light.11" | "colors.red.light.12" | "colors.red.light.a.1" | "colors.red.light.a.2" | "colors.red.light.a.3" | "colors.red.light.a.4" | "colors.red.light.a.5" | "colors.red.light.a.6" | "colors.red.light.a.7" | "colors.red.light.a.8" | "colors.red.light.a.9" | "colors.red.light.a.10" | "colors.red.light.a.11" | "colors.red.light.a.12" | "colors.red.light.p3.1" | "colors.red.light.p3.2" | "colors.red.light.p3.3" | "colors.red.light.p3.4" | "colors.red.light.p3.5" | "colors.red.light.p3.6" | "colors.red.light.p3.7" | "colors.red.light.p3.8" | "colors.red.light.p3.9" | "colors.red.light.p3.10" | "colors.red.light.p3.11" | "colors.red.light.p3.12" | "colors.red.light.p3.a.1" | "colors.red.light.p3.a.2" | "colors.red.light.p3.a.3" | "colors.red.light.p3.a.4" | "colors.red.light.p3.a.5" | "colors.red.light.p3.a.6" | "colors.red.light.p3.a.7" | "colors.red.light.p3.a.8" | "colors.red.light.p3.a.9" | "colors.red.light.p3.a.10" | "colors.red.light.p3.a.11" | "colors.red.light.p3.a.12" | "colors.red.dark.1" | "colors.red.dark.2" | "colors.red.dark.3" | "colors.red.dark.4" | "colors.red.dark.5" | "colors.red.dark.6" | "colors.red.dark.7" | "colors.red.dark.8" | "colors.red.dark.9" | "colors.red.dark.10" | "colors.red.dark.11" | "colors.red.dark.12" | "colors.red.dark.a.1" | "colors.red.dark.a.2" | "colors.red.dark.a.3" | "colors.red.dark.a.4" | "colors.red.dark.a.5" | "colors.red.dark.a.6" | "colors.red.dark.a.7" | "colors.red.dark.a.8" | "colors.red.dark.a.9" | "colors.red.dark.a.10" | "colors.red.dark.a.11" | "colors.red.dark.a.12" | "colors.red.dark.p3.1" | "colors.red.dark.p3.2" | "colors.red.dark.p3.3" | "colors.red.dark.p3.4" | "colors.red.dark.p3.5" | "colors.red.dark.p3.6" | "colors.red.dark.p3.7" | "colors.red.dark.p3.8" | "colors.red.dark.p3.9" | "colors.red.dark.p3.10" | "colors.red.dark.p3.11" | "colors.red.dark.p3.12" | "colors.red.dark.p3.a.1" | "colors.red.dark.p3.a.2" | "colors.red.dark.p3.a.3" | "colors.red.dark.p3.a.4" | "colors.red.dark.p3.a.5" | "colors.red.dark.p3.a.6" | "colors.red.dark.p3.a.7" | "colors.red.dark.p3.a.8" | "colors.red.dark.p3.a.9" | "colors.red.dark.p3.a.10" | "colors.red.dark.p3.a.11" | "colors.red.dark.p3.a.12" | "colors.red.a.1" | "colors.red.a.2" | "colors.red.a.3" | "colors.red.a.4" | "colors.red.a.5" | "colors.red.a.6" | "colors.red.a.7" | "colors.red.a.8" | "colors.red.a.9" | "colors.red.a.10" | "colors.red.a.11" | "colors.red.a.12" | "colors.red.p3.1" | "colors.red.p3.2" | "colors.red.p3.3" | "colors.red.p3.4" | "colors.red.p3.5" | "colors.red.p3.6" | "colors.red.p3.7" | "colors.red.p3.8" | "colors.red.p3.9" | "colors.red.p3.10" | "colors.red.p3.11" | "colors.red.p3.12" | "colors.red.p3.a.1" | "colors.red.p3.a.2" | "colors.red.p3.a.3" | "colors.red.p3.a.4" | "colors.red.p3.a.5" | "colors.red.p3.a.6" | "colors.red.p3.a.7" | "colors.red.p3.a.8" | "colors.red.p3.a.9" | "colors.red.p3.a.10" | "colors.red.p3.a.11" | "colors.red.p3.a.12" | "colors.ruby.1" | "colors.ruby.2" | "colors.ruby.3" | "colors.ruby.4" | "colors.ruby.5" | "colors.ruby.6" | "colors.ruby.7" | "colors.ruby.8" | "colors.ruby.9" | "colors.ruby.10" | "colors.ruby.11" | "colors.ruby.12" | "colors.ruby.light.1" | "colors.ruby.light.2" | "colors.ruby.light.3" | "colors.ruby.light.4" | "colors.ruby.light.5" | "colors.ruby.light.6" | "colors.ruby.light.7" | "colors.ruby.light.8" | "colors.ruby.light.9" | "colors.ruby.light.10" | "colors.ruby.light.11" | "colors.ruby.light.12" | "colors.ruby.light.a.1" | "colors.ruby.light.a.2" | "colors.ruby.light.a.3" | "colors.ruby.light.a.4" | "colors.ruby.light.a.5" | "colors.ruby.light.a.6" | "colors.ruby.light.a.7" | "colors.ruby.light.a.8" | "colors.ruby.light.a.9" | "colors.ruby.light.a.10" | "colors.ruby.light.a.11" | "colors.ruby.light.a.12" | "colors.ruby.light.p3.1" | "colors.ruby.light.p3.2" | "colors.ruby.light.p3.3" | "colors.ruby.light.p3.4" | "colors.ruby.light.p3.5" | "colors.ruby.light.p3.6" | "colors.ruby.light.p3.7" | "colors.ruby.light.p3.8" | "colors.ruby.light.p3.9" | "colors.ruby.light.p3.10" | "colors.ruby.light.p3.11" | "colors.ruby.light.p3.12" | "colors.ruby.light.p3.a.1" | "colors.ruby.light.p3.a.2" | "colors.ruby.light.p3.a.3" | "colors.ruby.light.p3.a.4" | "colors.ruby.light.p3.a.5" | "colors.ruby.light.p3.a.6" | "colors.ruby.light.p3.a.7" | "colors.ruby.light.p3.a.8" | "colors.ruby.light.p3.a.9" | "colors.ruby.light.p3.a.10" | "colors.ruby.light.p3.a.11" | "colors.ruby.light.p3.a.12" | "colors.ruby.dark.1" | "colors.ruby.dark.2" | "colors.ruby.dark.3" | "colors.ruby.dark.4" | "colors.ruby.dark.5" | "colors.ruby.dark.6" | "colors.ruby.dark.7" | "colors.ruby.dark.8" | "colors.ruby.dark.9" | "colors.ruby.dark.10" | "colors.ruby.dark.11" | "colors.ruby.dark.12" | "colors.ruby.dark.a.1" | "colors.ruby.dark.a.2" | "colors.ruby.dark.a.3" | "colors.ruby.dark.a.4" | "colors.ruby.dark.a.5" | "colors.ruby.dark.a.6" | "colors.ruby.dark.a.7" | "colors.ruby.dark.a.8" | "colors.ruby.dark.a.9" | "colors.ruby.dark.a.10" | "colors.ruby.dark.a.11" | "colors.ruby.dark.a.12" | "colors.ruby.dark.p3.1" | "colors.ruby.dark.p3.2" | "colors.ruby.dark.p3.3" | "colors.ruby.dark.p3.4" | "colors.ruby.dark.p3.5" | "colors.ruby.dark.p3.6" | "colors.ruby.dark.p3.7" | "colors.ruby.dark.p3.8" | "colors.ruby.dark.p3.9" | "colors.ruby.dark.p3.10" | "colors.ruby.dark.p3.11" | "colors.ruby.dark.p3.12" | "colors.ruby.dark.p3.a.1" | "colors.ruby.dark.p3.a.2" | "colors.ruby.dark.p3.a.3" | "colors.ruby.dark.p3.a.4" | "colors.ruby.dark.p3.a.5" | "colors.ruby.dark.p3.a.6" | "colors.ruby.dark.p3.a.7" | "colors.ruby.dark.p3.a.8" | "colors.ruby.dark.p3.a.9" | "colors.ruby.dark.p3.a.10" | "colors.ruby.dark.p3.a.11" | "colors.ruby.dark.p3.a.12" | "colors.ruby.a.1" | "colors.ruby.a.2" | "colors.ruby.a.3" | "colors.ruby.a.4" | "colors.ruby.a.5" | "colors.ruby.a.6" | "colors.ruby.a.7" | "colors.ruby.a.8" | "colors.ruby.a.9" | "colors.ruby.a.10" | "colors.ruby.a.11" | "colors.ruby.a.12" | "colors.ruby.p3.1" | "colors.ruby.p3.2" | "colors.ruby.p3.3" | "colors.ruby.p3.4" | "colors.ruby.p3.5" | "colors.ruby.p3.6" | "colors.ruby.p3.7" | "colors.ruby.p3.8" | "colors.ruby.p3.9" | "colors.ruby.p3.10" | "colors.ruby.p3.11" | "colors.ruby.p3.12" | "colors.ruby.p3.a.1" | "colors.ruby.p3.a.2" | "colors.ruby.p3.a.3" | "colors.ruby.p3.a.4" | "colors.ruby.p3.a.5" | "colors.ruby.p3.a.6" | "colors.ruby.p3.a.7" | "colors.ruby.p3.a.8" | "colors.ruby.p3.a.9" | "colors.ruby.p3.a.10" | "colors.ruby.p3.a.11" | "colors.ruby.p3.a.12" | "colors.teal.1" | "colors.teal.2" | "colors.teal.3" | "colors.teal.4" | "colors.teal.5" | "colors.teal.6" | "colors.teal.7" | "colors.teal.8" | "colors.teal.9" | "colors.teal.10" | "colors.teal.11" | "colors.teal.12" | "colors.teal.light.1" | "colors.teal.light.2" | "colors.teal.light.3" | "colors.teal.light.4" | "colors.teal.light.5" | "colors.teal.light.6" | "colors.teal.light.7" | "colors.teal.light.8" | "colors.teal.light.9" | "colors.teal.light.10" | "colors.teal.light.11" | "colors.teal.light.12" | "colors.teal.light.a.1" | "colors.teal.light.a.2" | "colors.teal.light.a.3" | "colors.teal.light.a.4" | "colors.teal.light.a.5" | "colors.teal.light.a.6" | "colors.teal.light.a.7" | "colors.teal.light.a.8" | "colors.teal.light.a.9" | "colors.teal.light.a.10" | "colors.teal.light.a.11" | "colors.teal.light.a.12" | "colors.teal.light.p3.1" | "colors.teal.light.p3.2" | "colors.teal.light.p3.3" | "colors.teal.light.p3.4" | "colors.teal.light.p3.5" | "colors.teal.light.p3.6" | "colors.teal.light.p3.7" | "colors.teal.light.p3.8" | "colors.teal.light.p3.9" | "colors.teal.light.p3.10" | "colors.teal.light.p3.11" | "colors.teal.light.p3.12" | "colors.teal.light.p3.a.1" | "colors.teal.light.p3.a.2" | "colors.teal.light.p3.a.3" | "colors.teal.light.p3.a.4" | "colors.teal.light.p3.a.5" | "colors.teal.light.p3.a.6" | "colors.teal.light.p3.a.7" | "colors.teal.light.p3.a.8" | "colors.teal.light.p3.a.9" | "colors.teal.light.p3.a.10" | "colors.teal.light.p3.a.11" | "colors.teal.light.p3.a.12" | "colors.teal.dark.1" | "colors.teal.dark.2" | "colors.teal.dark.3" | "colors.teal.dark.4" | "colors.teal.dark.5" | "colors.teal.dark.6" | "colors.teal.dark.7" | "colors.teal.dark.8" | "colors.teal.dark.9" | "colors.teal.dark.10" | "colors.teal.dark.11" | "colors.teal.dark.12" | "colors.teal.dark.a.1" | "colors.teal.dark.a.2" | "colors.teal.dark.a.3" | "colors.teal.dark.a.4" | "colors.teal.dark.a.5" | "colors.teal.dark.a.6" | "colors.teal.dark.a.7" | "colors.teal.dark.a.8" | "colors.teal.dark.a.9" | "colors.teal.dark.a.10" | "colors.teal.dark.a.11" | "colors.teal.dark.a.12" | "colors.teal.dark.p3.1" | "colors.teal.dark.p3.2" | "colors.teal.dark.p3.3" | "colors.teal.dark.p3.4" | "colors.teal.dark.p3.5" | "colors.teal.dark.p3.6" | "colors.teal.dark.p3.7" | "colors.teal.dark.p3.8" | "colors.teal.dark.p3.9" | "colors.teal.dark.p3.10" | "colors.teal.dark.p3.11" | "colors.teal.dark.p3.12" | "colors.teal.dark.p3.a.1" | "colors.teal.dark.p3.a.2" | "colors.teal.dark.p3.a.3" | "colors.teal.dark.p3.a.4" | "colors.teal.dark.p3.a.5" | "colors.teal.dark.p3.a.6" | "colors.teal.dark.p3.a.7" | "colors.teal.dark.p3.a.8" | "colors.teal.dark.p3.a.9" | "colors.teal.dark.p3.a.10" | "colors.teal.dark.p3.a.11" | "colors.teal.dark.p3.a.12" | "colors.teal.a.1" | "colors.teal.a.2" | "colors.teal.a.3" | "colors.teal.a.4" | "colors.teal.a.5" | "colors.teal.a.6" | "colors.teal.a.7" | "colors.teal.a.8" | "colors.teal.a.9" | "colors.teal.a.10" | "colors.teal.a.11" | "colors.teal.a.12" | "colors.teal.p3.1" | "colors.teal.p3.2" | "colors.teal.p3.3" | "colors.teal.p3.4" | "colors.teal.p3.5" | "colors.teal.p3.6" | "colors.teal.p3.7" | "colors.teal.p3.8" | "colors.teal.p3.9" | "colors.teal.p3.10" | "colors.teal.p3.11" | "colors.teal.p3.12" | "colors.teal.p3.a.1" | "colors.teal.p3.a.2" | "colors.teal.p3.a.3" | "colors.teal.p3.a.4" | "colors.teal.p3.a.5" | "colors.teal.p3.a.6" | "colors.teal.p3.a.7" | "colors.teal.p3.a.8" | "colors.teal.p3.a.9" | "colors.teal.p3.a.10" | "colors.teal.p3.a.11" | "colors.teal.p3.a.12" | "colors.tomato.1" | "colors.tomato.2" | "colors.tomato.3" | "colors.tomato.4" | "colors.tomato.5" | "colors.tomato.6" | "colors.tomato.7" | "colors.tomato.8" | "colors.tomato.9" | "colors.tomato.10" | "colors.tomato.11" | "colors.tomato.12" | "colors.tomato.light.1" | "colors.tomato.light.2" | "colors.tomato.light.3" | "colors.tomato.light.4" | "colors.tomato.light.5" | "colors.tomato.light.6" | "colors.tomato.light.7" | "colors.tomato.light.8" | "colors.tomato.light.9" | "colors.tomato.light.10" | "colors.tomato.light.11" | "colors.tomato.light.12" | "colors.tomato.light.a.1" | "colors.tomato.light.a.2" | "colors.tomato.light.a.3" | "colors.tomato.light.a.4" | "colors.tomato.light.a.5" | "colors.tomato.light.a.6" | "colors.tomato.light.a.7" | "colors.tomato.light.a.8" | "colors.tomato.light.a.9" | "colors.tomato.light.a.10" | "colors.tomato.light.a.11" | "colors.tomato.light.a.12" | "colors.tomato.light.p3.1" | "colors.tomato.light.p3.2" | "colors.tomato.light.p3.3" | "colors.tomato.light.p3.4" | "colors.tomato.light.p3.5" | "colors.tomato.light.p3.6" | "colors.tomato.light.p3.7" | "colors.tomato.light.p3.8" | "colors.tomato.light.p3.9" | "colors.tomato.light.p3.10" | "colors.tomato.light.p3.11" | "colors.tomato.light.p3.12" | "colors.tomato.light.p3.a.1" | "colors.tomato.light.p3.a.2" | "colors.tomato.light.p3.a.3" | "colors.tomato.light.p3.a.4" | "colors.tomato.light.p3.a.5" | "colors.tomato.light.p3.a.6" | "colors.tomato.light.p3.a.7" | "colors.tomato.light.p3.a.8" | "colors.tomato.light.p3.a.9" | "colors.tomato.light.p3.a.10" | "colors.tomato.light.p3.a.11" | "colors.tomato.light.p3.a.12" | "colors.tomato.dark.1" | "colors.tomato.dark.2" | "colors.tomato.dark.3" | "colors.tomato.dark.4" | "colors.tomato.dark.5" | "colors.tomato.dark.6" | "colors.tomato.dark.7" | "colors.tomato.dark.8" | "colors.tomato.dark.9" | "colors.tomato.dark.10" | "colors.tomato.dark.11" | "colors.tomato.dark.12" | "colors.tomato.dark.a.1" | "colors.tomato.dark.a.2" | "colors.tomato.dark.a.3" | "colors.tomato.dark.a.4" | "colors.tomato.dark.a.5" | "colors.tomato.dark.a.6" | "colors.tomato.dark.a.7" | "colors.tomato.dark.a.8" | "colors.tomato.dark.a.9" | "colors.tomato.dark.a.10" | "colors.tomato.dark.a.11" | "colors.tomato.dark.a.12" | "colors.tomato.dark.p3.1" | "colors.tomato.dark.p3.2" | "colors.tomato.dark.p3.3" | "colors.tomato.dark.p3.4" | "colors.tomato.dark.p3.5" | "colors.tomato.dark.p3.6" | "colors.tomato.dark.p3.7" | "colors.tomato.dark.p3.8" | "colors.tomato.dark.p3.9" | "colors.tomato.dark.p3.10" | "colors.tomato.dark.p3.11" | "colors.tomato.dark.p3.12" | "colors.tomato.dark.p3.a.1" | "colors.tomato.dark.p3.a.2" | "colors.tomato.dark.p3.a.3" | "colors.tomato.dark.p3.a.4" | "colors.tomato.dark.p3.a.5" | "colors.tomato.dark.p3.a.6" | "colors.tomato.dark.p3.a.7" | "colors.tomato.dark.p3.a.8" | "colors.tomato.dark.p3.a.9" | "colors.tomato.dark.p3.a.10" | "colors.tomato.dark.p3.a.11" | "colors.tomato.dark.p3.a.12" | "colors.tomato.a.1" | "colors.tomato.a.2" | "colors.tomato.a.3" | "colors.tomato.a.4" | "colors.tomato.a.5" | "colors.tomato.a.6" | "colors.tomato.a.7" | "colors.tomato.a.8" | "colors.tomato.a.9" | "colors.tomato.a.10" | "colors.tomato.a.11" | "colors.tomato.a.12" | "colors.tomato.p3.1" | "colors.tomato.p3.2" | "colors.tomato.p3.3" | "colors.tomato.p3.4" | "colors.tomato.p3.5" | "colors.tomato.p3.6" | "colors.tomato.p3.7" | "colors.tomato.p3.8" | "colors.tomato.p3.9" | "colors.tomato.p3.10" | "colors.tomato.p3.11" | "colors.tomato.p3.12" | "colors.tomato.p3.a.1" | "colors.tomato.p3.a.2" | "colors.tomato.p3.a.3" | "colors.tomato.p3.a.4" | "colors.tomato.p3.a.5" | "colors.tomato.p3.a.6" | "colors.tomato.p3.a.7" | "colors.tomato.p3.a.8" | "colors.tomato.p3.a.9" | "colors.tomato.p3.a.10" | "colors.tomato.p3.a.11" | "colors.tomato.p3.a.12" | "colors.violet.1" | "colors.violet.2" | "colors.violet.3" | "colors.violet.4" | "colors.violet.5" | "colors.violet.6" | "colors.violet.7" | "colors.violet.8" | "colors.violet.9" | "colors.violet.10" | "colors.violet.11" | "colors.violet.12" | "colors.violet.light.1" | "colors.violet.light.2" | "colors.violet.light.3" | "colors.violet.light.4" | "colors.violet.light.5" | "colors.violet.light.6" | "colors.violet.light.7" | "colors.violet.light.8" | "colors.violet.light.9" | "colors.violet.light.10" | "colors.violet.light.11" | "colors.violet.light.12" | "colors.violet.light.a.1" | "colors.violet.light.a.2" | "colors.violet.light.a.3" | "colors.violet.light.a.4" | "colors.violet.light.a.5" | "colors.violet.light.a.6" | "colors.violet.light.a.7" | "colors.violet.light.a.8" | "colors.violet.light.a.9" | "colors.violet.light.a.10" | "colors.violet.light.a.11" | "colors.violet.light.a.12" | "colors.violet.light.p3.1" | "colors.violet.light.p3.2" | "colors.violet.light.p3.3" | "colors.violet.light.p3.4" | "colors.violet.light.p3.5" | "colors.violet.light.p3.6" | "colors.violet.light.p3.7" | "colors.violet.light.p3.8" | "colors.violet.light.p3.9" | "colors.violet.light.p3.10" | "colors.violet.light.p3.11" | "colors.violet.light.p3.12" | "colors.violet.light.p3.a.1" | "colors.violet.light.p3.a.2" | "colors.violet.light.p3.a.3" | "colors.violet.light.p3.a.4" | "colors.violet.light.p3.a.5" | "colors.violet.light.p3.a.6" | "colors.violet.light.p3.a.7" | "colors.violet.light.p3.a.8" | "colors.violet.light.p3.a.9" | "colors.violet.light.p3.a.10" | "colors.violet.light.p3.a.11" | "colors.violet.light.p3.a.12" | "colors.violet.dark.1" | "colors.violet.dark.2" | "colors.violet.dark.3" | "colors.violet.dark.4" | "colors.violet.dark.5" | "colors.violet.dark.6" | "colors.violet.dark.7" | "colors.violet.dark.8" | "colors.violet.dark.9" | "colors.violet.dark.10" | "colors.violet.dark.11" | "colors.violet.dark.12" | "colors.violet.dark.a.1" | "colors.violet.dark.a.2" | "colors.violet.dark.a.3" | "colors.violet.dark.a.4" | "colors.violet.dark.a.5" | "colors.violet.dark.a.6" | "colors.violet.dark.a.7" | "colors.violet.dark.a.8" | "colors.violet.dark.a.9" | "colors.violet.dark.a.10" | "colors.violet.dark.a.11" | "colors.violet.dark.a.12" | "colors.violet.dark.p3.1" | "colors.violet.dark.p3.2" | "colors.violet.dark.p3.3" | "colors.violet.dark.p3.4" | "colors.violet.dark.p3.5" | "colors.violet.dark.p3.6" | "colors.violet.dark.p3.7" | "colors.violet.dark.p3.8" | "colors.violet.dark.p3.9" | "colors.violet.dark.p3.10" | "colors.violet.dark.p3.11" | "colors.violet.dark.p3.12" | "colors.violet.dark.p3.a.1" | "colors.violet.dark.p3.a.2" | "colors.violet.dark.p3.a.3" | "colors.violet.dark.p3.a.4" | "colors.violet.dark.p3.a.5" | "colors.violet.dark.p3.a.6" | "colors.violet.dark.p3.a.7" | "colors.violet.dark.p3.a.8" | "colors.violet.dark.p3.a.9" | "colors.violet.dark.p3.a.10" | "colors.violet.dark.p3.a.11" | "colors.violet.dark.p3.a.12" | "colors.violet.a.1" | "colors.violet.a.2" | "colors.violet.a.3" | "colors.violet.a.4" | "colors.violet.a.5" | "colors.violet.a.6" | "colors.violet.a.7" | "colors.violet.a.8" | "colors.violet.a.9" | "colors.violet.a.10" | "colors.violet.a.11" | "colors.violet.a.12" | "colors.violet.p3.1" | "colors.violet.p3.2" | "colors.violet.p3.3" | "colors.violet.p3.4" | "colors.violet.p3.5" | "colors.violet.p3.6" | "colors.violet.p3.7" | "colors.violet.p3.8" | "colors.violet.p3.9" | "colors.violet.p3.10" | "colors.violet.p3.11" | "colors.violet.p3.12" | "colors.violet.p3.a.1" | "colors.violet.p3.a.2" | "colors.violet.p3.a.3" | "colors.violet.p3.a.4" | "colors.violet.p3.a.5" | "colors.violet.p3.a.6" | "colors.violet.p3.a.7" | "colors.violet.p3.a.8" | "colors.violet.p3.a.9" | "colors.violet.p3.a.10" | "colors.violet.p3.a.11" | "colors.violet.p3.a.12" | "colors.yellow.1" | "colors.yellow.2" | "colors.yellow.3" | "colors.yellow.4" | "colors.yellow.5" | "colors.yellow.6" | "colors.yellow.7" | "colors.yellow.8" | "colors.yellow.9" | "colors.yellow.10" | "colors.yellow.11" | "colors.yellow.12" | "colors.yellow.light.1" | "colors.yellow.light.2" | "colors.yellow.light.3" | "colors.yellow.light.4" | "colors.yellow.light.5" | "colors.yellow.light.6" | "colors.yellow.light.7" | "colors.yellow.light.8" | "colors.yellow.light.9" | "colors.yellow.light.10" | "colors.yellow.light.11" | "colors.yellow.light.12" | "colors.yellow.light.a.1" | "colors.yellow.light.a.2" | "colors.yellow.light.a.3" | "colors.yellow.light.a.4" | "colors.yellow.light.a.5" | "colors.yellow.light.a.6" | "colors.yellow.light.a.7" | "colors.yellow.light.a.8" | "colors.yellow.light.a.9" | "colors.yellow.light.a.10" | "colors.yellow.light.a.11" | "colors.yellow.light.a.12" | "colors.yellow.light.p3.1" | "colors.yellow.light.p3.2" | "colors.yellow.light.p3.3" | "colors.yellow.light.p3.4" | "colors.yellow.light.p3.5" | "colors.yellow.light.p3.6" | "colors.yellow.light.p3.7" | "colors.yellow.light.p3.8" | "colors.yellow.light.p3.9" | "colors.yellow.light.p3.10" | "colors.yellow.light.p3.11" | "colors.yellow.light.p3.12" | "colors.yellow.light.p3.a.1" | "colors.yellow.light.p3.a.2" | "colors.yellow.light.p3.a.3" | "colors.yellow.light.p3.a.4" | "colors.yellow.light.p3.a.5" | "colors.yellow.light.p3.a.6" | "colors.yellow.light.p3.a.7" | "colors.yellow.light.p3.a.8" | "colors.yellow.light.p3.a.9" | "colors.yellow.light.p3.a.10" | "colors.yellow.light.p3.a.11" | "colors.yellow.light.p3.a.12" | "colors.yellow.dark.1" | "colors.yellow.dark.2" | "colors.yellow.dark.3" | "colors.yellow.dark.4" | "colors.yellow.dark.5" | "colors.yellow.dark.6" | "colors.yellow.dark.7" | "colors.yellow.dark.8" | "colors.yellow.dark.9" | "colors.yellow.dark.10" | "colors.yellow.dark.11" | "colors.yellow.dark.12" | "colors.yellow.dark.a.1" | "colors.yellow.dark.a.2" | "colors.yellow.dark.a.3" | "colors.yellow.dark.a.4" | "colors.yellow.dark.a.5" | "colors.yellow.dark.a.6" | "colors.yellow.dark.a.7" | "colors.yellow.dark.a.8" | "colors.yellow.dark.a.9" | "colors.yellow.dark.a.10" | "colors.yellow.dark.a.11" | "colors.yellow.dark.a.12" | "colors.yellow.dark.p3.1" | "colors.yellow.dark.p3.2" | "colors.yellow.dark.p3.3" | "colors.yellow.dark.p3.4" | "colors.yellow.dark.p3.5" | "colors.yellow.dark.p3.6" | "colors.yellow.dark.p3.7" | "colors.yellow.dark.p3.8" | "colors.yellow.dark.p3.9" | "colors.yellow.dark.p3.10" | "colors.yellow.dark.p3.11" | "colors.yellow.dark.p3.12" | "colors.yellow.dark.p3.a.1" | "colors.yellow.dark.p3.a.2" | "colors.yellow.dark.p3.a.3" | "colors.yellow.dark.p3.a.4" | "colors.yellow.dark.p3.a.5" | "colors.yellow.dark.p3.a.6" | "colors.yellow.dark.p3.a.7" | "colors.yellow.dark.p3.a.8" | "colors.yellow.dark.p3.a.9" | "colors.yellow.dark.p3.a.10" | "colors.yellow.dark.p3.a.11" | "colors.yellow.dark.p3.a.12" | "colors.yellow.a.1" | "colors.yellow.a.2" | "colors.yellow.a.3" | "colors.yellow.a.4" | "colors.yellow.a.5" | "colors.yellow.a.6" | "colors.yellow.a.7" | "colors.yellow.a.8" | "colors.yellow.a.9" | "colors.yellow.a.10" | "colors.yellow.a.11" | "colors.yellow.a.12" | "colors.yellow.p3.1" | "colors.yellow.p3.2" | "colors.yellow.p3.3" | "colors.yellow.p3.4" | "colors.yellow.p3.5" | "colors.yellow.p3.6" | "colors.yellow.p3.7" | "colors.yellow.p3.8" | "colors.yellow.p3.9" | "colors.yellow.p3.10" | "colors.yellow.p3.11" | "colors.yellow.p3.12" | "colors.yellow.p3.a.1" | "colors.yellow.p3.a.2" | "colors.yellow.p3.a.3" | "colors.yellow.p3.a.4" | "colors.yellow.p3.a.5" | "colors.yellow.p3.a.6" | "colors.yellow.p3.a.7" | "colors.yellow.p3.a.8" | "colors.yellow.p3.a.9" | "colors.yellow.p3.a.10" | "colors.yellow.p3.a.11" | "colors.yellow.p3.a.12" | "colors.likec4.background" | "colors.likec4.background.pattern" | "colors.likec4.amber.element.fill" | "colors.likec4.amber.element.stroke" | "colors.likec4.amber.element.hiContrast" | "colors.likec4.amber.element.loContrast" | "colors.likec4.amber.relation.stroke" | "colors.likec4.amber.relation.stroke.selected" | "colors.likec4.amber.relation.label" | "colors.likec4.amber.relation.label.bg" | "colors.likec4.blue.element.fill" | "colors.likec4.blue.element.stroke" | "colors.likec4.blue.element.hiContrast" | "colors.likec4.blue.element.loContrast" | "colors.likec4.blue.relation.stroke" | "colors.likec4.blue.relation.stroke.selected" | "colors.likec4.blue.relation.label" | "colors.likec4.blue.relation.label.bg" | "colors.likec4.gray.element.fill" | "colors.likec4.gray.element.stroke" | "colors.likec4.gray.element.hiContrast" | "colors.likec4.gray.element.loContrast" | "colors.likec4.gray.relation.stroke" | "colors.likec4.gray.relation.stroke.selected" | "colors.likec4.gray.relation.label" | "colors.likec4.gray.relation.label.bg" | "colors.likec4.slate.element.fill" | "colors.likec4.slate.element.stroke" | "colors.likec4.slate.element.hiContrast" | "colors.likec4.slate.element.loContrast" | "colors.likec4.slate.relation.stroke" | "colors.likec4.slate.relation.stroke.selected" | "colors.likec4.slate.relation.label" | "colors.likec4.slate.relation.label.bg" | "colors.likec4.green.element.fill" | "colors.likec4.green.element.stroke" | "colors.likec4.green.element.hiContrast" | "colors.likec4.green.element.loContrast" | "colors.likec4.green.relation.stroke" | "colors.likec4.green.relation.stroke.selected" | "colors.likec4.green.relation.label" | "colors.likec4.green.relation.label.bg" | "colors.likec4.indigo.element.fill" | "colors.likec4.indigo.element.stroke" | "colors.likec4.indigo.element.hiContrast" | "colors.likec4.indigo.element.loContrast" | "colors.likec4.indigo.relation.stroke" | "colors.likec4.indigo.relation.stroke.selected" | "colors.likec4.indigo.relation.label" | "colors.likec4.indigo.relation.label.bg" | "colors.likec4.muted.element.fill" | "colors.likec4.muted.element.stroke" | "colors.likec4.muted.element.hiContrast" | "colors.likec4.muted.element.loContrast" | "colors.likec4.muted.relation.stroke" | "colors.likec4.muted.relation.stroke.selected" | "colors.likec4.muted.relation.label" | "colors.likec4.muted.relation.label.bg" | "colors.likec4.primary.element.fill" | "colors.likec4.primary.element.stroke" | "colors.likec4.primary.element.hiContrast" | "colors.likec4.primary.element.loContrast" | "colors.likec4.primary.relation.stroke" | "colors.likec4.primary.relation.stroke.selected" | "colors.likec4.primary.relation.label" | "colors.likec4.primary.relation.label.bg" | "colors.likec4.red.element.fill" | "colors.likec4.red.element.stroke" | "colors.likec4.red.element.hiContrast" | "colors.likec4.red.element.loContrast" | "colors.likec4.red.relation.stroke" | "colors.likec4.red.relation.stroke.selected" | "colors.likec4.red.relation.label" | "colors.likec4.red.relation.label.bg" | "colors.likec4.secondary.element.fill" | "colors.likec4.secondary.element.stroke" | "colors.likec4.secondary.element.hiContrast" | "colors.likec4.secondary.element.loContrast" | "colors.likec4.secondary.relation.stroke" | "colors.likec4.secondary.relation.stroke.selected" | "colors.likec4.secondary.relation.label" | "colors.likec4.secondary.relation.label.bg" | "colors.likec4.sky.element.fill" | "colors.likec4.sky.element.stroke" | "colors.likec4.sky.element.hiContrast" | "colors.likec4.sky.element.loContrast" | "colors.likec4.sky.relation.stroke" | "colors.likec4.sky.relation.stroke.selected" | "colors.likec4.sky.relation.label" | "colors.likec4.sky.relation.label.bg" | "colors.likec4.compound1.amber.hiContrast" | "colors.likec4.compound1.amber.loContrast" | "colors.likec4.compound1.amber.fill" | "colors.likec4.compound1.amber.stroke" | "colors.likec4.compound1.blue.hiContrast" | "colors.likec4.compound1.blue.loContrast" | "colors.likec4.compound1.blue.fill" | "colors.likec4.compound1.blue.stroke" | "colors.likec4.compound1.gray.hiContrast" | "colors.likec4.compound1.gray.loContrast" | "colors.likec4.compound1.gray.fill" | "colors.likec4.compound1.gray.stroke" | "colors.likec4.compound1.slate.hiContrast" | "colors.likec4.compound1.slate.loContrast" | "colors.likec4.compound1.slate.fill" | "colors.likec4.compound1.slate.stroke" | "colors.likec4.compound1.green.hiContrast" | "colors.likec4.compound1.green.loContrast" | "colors.likec4.compound1.green.fill" | "colors.likec4.compound1.green.stroke" | "colors.likec4.compound1.indigo.hiContrast" | "colors.likec4.compound1.indigo.loContrast" | "colors.likec4.compound1.indigo.fill" | "colors.likec4.compound1.indigo.stroke" | "colors.likec4.compound1.muted.hiContrast" | "colors.likec4.compound1.muted.loContrast" | "colors.likec4.compound1.muted.fill" | "colors.likec4.compound1.muted.stroke" | "colors.likec4.compound1.primary.hiContrast" | "colors.likec4.compound1.primary.loContrast" | "colors.likec4.compound1.primary.fill" | "colors.likec4.compound1.primary.stroke" | "colors.likec4.compound1.red.hiContrast" | "colors.likec4.compound1.red.loContrast" | "colors.likec4.compound1.red.fill" | "colors.likec4.compound1.red.stroke" | "colors.likec4.compound1.secondary.hiContrast" | "colors.likec4.compound1.secondary.loContrast" | "colors.likec4.compound1.secondary.fill" | "colors.likec4.compound1.secondary.stroke" | "colors.likec4.compound1.sky.hiContrast" | "colors.likec4.compound1.sky.loContrast" | "colors.likec4.compound1.sky.fill" | "colors.likec4.compound1.sky.stroke" | "colors.likec4.compound2.amber.hiContrast" | "colors.likec4.compound2.amber.loContrast" | "colors.likec4.compound2.amber.fill" | "colors.likec4.compound2.amber.stroke" | "colors.likec4.compound2.blue.hiContrast" | "colors.likec4.compound2.blue.loContrast" | "colors.likec4.compound2.blue.fill" | "colors.likec4.compound2.blue.stroke" | "colors.likec4.compound2.gray.hiContrast" | "colors.likec4.compound2.gray.loContrast" | "colors.likec4.compound2.gray.fill" | "colors.likec4.compound2.gray.stroke" | "colors.likec4.compound2.slate.hiContrast" | "colors.likec4.compound2.slate.loContrast" | "colors.likec4.compound2.slate.fill" | "colors.likec4.compound2.slate.stroke" | "colors.likec4.compound2.green.hiContrast" | "colors.likec4.compound2.green.loContrast" | "colors.likec4.compound2.green.fill" | "colors.likec4.compound2.green.stroke" | "colors.likec4.compound2.indigo.hiContrast" | "colors.likec4.compound2.indigo.loContrast" | "colors.likec4.compound2.indigo.fill" | "colors.likec4.compound2.indigo.stroke" | "colors.likec4.compound2.muted.hiContrast" | "colors.likec4.compound2.muted.loContrast" | "colors.likec4.compound2.muted.fill" | "colors.likec4.compound2.muted.stroke" | "colors.likec4.compound2.primary.hiContrast" | "colors.likec4.compound2.primary.loContrast" | "colors.likec4.compound2.primary.fill" | "colors.likec4.compound2.primary.stroke" | "colors.likec4.compound2.red.hiContrast" | "colors.likec4.compound2.red.loContrast" | "colors.likec4.compound2.red.fill" | "colors.likec4.compound2.red.stroke" | "colors.likec4.compound2.secondary.hiContrast" | "colors.likec4.compound2.secondary.loContrast" | "colors.likec4.compound2.secondary.fill" | "colors.likec4.compound2.secondary.stroke" | "colors.likec4.compound2.sky.hiContrast" | "colors.likec4.compound2.sky.loContrast" | "colors.likec4.compound2.sky.fill" | "colors.likec4.compound2.sky.stroke" | "colors.likec4.compound3.amber.hiContrast" | "colors.likec4.compound3.amber.loContrast" | "colors.likec4.compound3.amber.fill" | "colors.likec4.compound3.amber.stroke" | "colors.likec4.compound3.blue.hiContrast" | "colors.likec4.compound3.blue.loContrast" | "colors.likec4.compound3.blue.fill" | "colors.likec4.compound3.blue.stroke" | "colors.likec4.compound3.gray.hiContrast" | "colors.likec4.compound3.gray.loContrast" | "colors.likec4.compound3.gray.fill" | "colors.likec4.compound3.gray.stroke" | "colors.likec4.compound3.slate.hiContrast" | "colors.likec4.compound3.slate.loContrast" | "colors.likec4.compound3.slate.fill" | "colors.likec4.compound3.slate.stroke" | "colors.likec4.compound3.green.hiContrast" | "colors.likec4.compound3.green.loContrast" | "colors.likec4.compound3.green.fill" | "colors.likec4.compound3.green.stroke" | "colors.likec4.compound3.indigo.hiContrast" | "colors.likec4.compound3.indigo.loContrast" | "colors.likec4.compound3.indigo.fill" | "colors.likec4.compound3.indigo.stroke" | "colors.likec4.compound3.muted.hiContrast" | "colors.likec4.compound3.muted.loContrast" | "colors.likec4.compound3.muted.fill" | "colors.likec4.compound3.muted.stroke" | "colors.likec4.compound3.primary.hiContrast" | "colors.likec4.compound3.primary.loContrast" | "colors.likec4.compound3.primary.fill" | "colors.likec4.compound3.primary.stroke" | "colors.likec4.compound3.red.hiContrast" | "colors.likec4.compound3.red.loContrast" | "colors.likec4.compound3.red.fill" | "colors.likec4.compound3.red.stroke" | "colors.likec4.compound3.secondary.hiContrast" | "colors.likec4.compound3.secondary.loContrast" | "colors.likec4.compound3.secondary.fill" | "colors.likec4.compound3.secondary.stroke" | "colors.likec4.compound3.sky.hiContrast" | "colors.likec4.compound3.sky.loContrast" | "colors.likec4.compound3.sky.fill" | "colors.likec4.compound3.sky.stroke" | "colors.likec4.compound4.amber.hiContrast" | "colors.likec4.compound4.amber.loContrast" | "colors.likec4.compound4.amber.fill" | "colors.likec4.compound4.amber.stroke" | "colors.likec4.compound4.blue.hiContrast" | "colors.likec4.compound4.blue.loContrast" | "colors.likec4.compound4.blue.fill" | "colors.likec4.compound4.blue.stroke" | "colors.likec4.compound4.gray.hiContrast" | "colors.likec4.compound4.gray.loContrast" | "colors.likec4.compound4.gray.fill" | "colors.likec4.compound4.gray.stroke" | "colors.likec4.compound4.slate.hiContrast" | "colors.likec4.compound4.slate.loContrast" | "colors.likec4.compound4.slate.fill" | "colors.likec4.compound4.slate.stroke" | "colors.likec4.compound4.green.hiContrast" | "colors.likec4.compound4.green.loContrast" | "colors.likec4.compound4.green.fill" | "colors.likec4.compound4.green.stroke" | "colors.likec4.compound4.indigo.hiContrast" | "colors.likec4.compound4.indigo.loContrast" | "colors.likec4.compound4.indigo.fill" | "colors.likec4.compound4.indigo.stroke" | "colors.likec4.compound4.muted.hiContrast" | "colors.likec4.compound4.muted.loContrast" | "colors.likec4.compound4.muted.fill" | "colors.likec4.compound4.muted.stroke" | "colors.likec4.compound4.primary.hiContrast" | "colors.likec4.compound4.primary.loContrast" | "colors.likec4.compound4.primary.fill" | "colors.likec4.compound4.primary.stroke" | "colors.likec4.compound4.red.hiContrast" | "colors.likec4.compound4.red.loContrast" | "colors.likec4.compound4.red.fill" | "colors.likec4.compound4.red.stroke" | "colors.likec4.compound4.secondary.hiContrast" | "colors.likec4.compound4.secondary.loContrast" | "colors.likec4.compound4.secondary.fill" | "colors.likec4.compound4.secondary.stroke" | "colors.likec4.compound4.sky.hiContrast" | "colors.likec4.compound4.sky.loContrast" | "colors.likec4.compound4.sky.fill" | "colors.likec4.compound4.sky.stroke" | "colors.likec4.compound5.amber.hiContrast" | "colors.likec4.compound5.amber.loContrast" | "colors.likec4.compound5.amber.fill" | "colors.likec4.compound5.amber.stroke" | "colors.likec4.compound5.blue.hiContrast" | "colors.likec4.compound5.blue.loContrast" | "colors.likec4.compound5.blue.fill" | "colors.likec4.compound5.blue.stroke" | "colors.likec4.compound5.gray.hiContrast" | "colors.likec4.compound5.gray.loContrast" | "colors.likec4.compound5.gray.fill" | "colors.likec4.compound5.gray.stroke" | "colors.likec4.compound5.slate.hiContrast" | "colors.likec4.compound5.slate.loContrast" | "colors.likec4.compound5.slate.fill" | "colors.likec4.compound5.slate.stroke" | "colors.likec4.compound5.green.hiContrast" | "colors.likec4.compound5.green.loContrast" | "colors.likec4.compound5.green.fill" | "colors.likec4.compound5.green.stroke" | "colors.likec4.compound5.indigo.hiContrast" | "colors.likec4.compound5.indigo.loContrast" | "colors.likec4.compound5.indigo.fill" | "colors.likec4.compound5.indigo.stroke" | "colors.likec4.compound5.muted.hiContrast" | "colors.likec4.compound5.muted.loContrast" | "colors.likec4.compound5.muted.fill" | "colors.likec4.compound5.muted.stroke" | "colors.likec4.compound5.primary.hiContrast" | "colors.likec4.compound5.primary.loContrast" | "colors.likec4.compound5.primary.fill" | "colors.likec4.compound5.primary.stroke" | "colors.likec4.compound5.red.hiContrast" | "colors.likec4.compound5.red.loContrast" | "colors.likec4.compound5.red.fill" | "colors.likec4.compound5.red.stroke" | "colors.likec4.compound5.secondary.hiContrast" | "colors.likec4.compound5.secondary.loContrast" | "colors.likec4.compound5.secondary.fill" | "colors.likec4.compound5.secondary.stroke" | "colors.likec4.compound5.sky.hiContrast" | "colors.likec4.compound5.sky.loContrast" | "colors.likec4.compound5.sky.fill" | "colors.likec4.compound5.sky.stroke" | "colors.likec4.mixColor" | "colors.likec4.tag.bg" | "colors.likec4.tag.bg.hover" | "colors.likec4.tag.border" | "colors.likec4.tag.text" | "colors.likec4.palette" | "colors.likec4.palette.fill" | "colors.likec4.palette.stroke" | "colors.likec4.palette.hiContrast" | "colors.likec4.palette.loContrast" | "colors.likec4.relation.stroke" | "colors.likec4.relation.stroke.selected" | "colors.likec4.relation.label" | "colors.likec4.relation.label.bg" | "spacing.likec4.-xs" | "spacing.likec4.-sm" | "spacing.likec4.-md" | "spacing.likec4.-lg" | "spacing.likec4.-xl" | "colors.colorPalette.colors.primary" | "colors.colorPalette.primary" | "colors.colorPalette" | "colors.colorPalette.colors.primary.filled" | "colors.colorPalette.primary.filled" | "colors.colorPalette.filled" | "colors.colorPalette.colors.primary.filledHover" | "colors.colorPalette.primary.filledHover" | "colors.colorPalette.filledHover" | "colors.colorPalette.colors.primary.light" | "colors.colorPalette.primary.light" | "colors.colorPalette.light" | "colors.colorPalette.colors.primary.lightHover" | "colors.colorPalette.primary.lightHover" | "colors.colorPalette.lightHover" | "colors.colorPalette.colors.primary.lightColor" | "colors.colorPalette.primary.lightColor" | "colors.colorPalette.lightColor" | "colors.colorPalette.colors.primary.outline" | "colors.colorPalette.primary.outline" | "colors.colorPalette.outline" | "colors.colorPalette.colors.primary.outlineHover" | "colors.colorPalette.primary.outlineHover" | "colors.colorPalette.outlineHover" | "colors.colorPalette.colors.primary[0]" | "colors.colorPalette.primary[0]" | "colors.colorPalette.colors.primary[1]" | "colors.colorPalette.primary[1]" | "colors.colorPalette.colors.primary[2]" | "colors.colorPalette.primary[2]" | "colors.colorPalette.colors.primary[3]" | "colors.colorPalette.primary[3]" | "colors.colorPalette.colors.primary[4]" | "colors.colorPalette.primary[4]" | "colors.colorPalette.colors.primary[5]" | "colors.colorPalette.primary[5]" | "colors.colorPalette.colors.primary[6]" | "colors.colorPalette.primary[6]" | "colors.colorPalette.colors.primary[7]" | "colors.colorPalette.primary[7]" | "colors.colorPalette.colors.primary[8]" | "colors.colorPalette.primary[8]" | "colors.colorPalette.colors.primary[9]" | "colors.colorPalette.primary[9]" | "colors.colorPalette.colors.white" | "colors.colorPalette.white" | "colors.colorPalette.colors.text" | "colors.colorPalette.text" | "colors.colorPalette.colors.body" | "colors.colorPalette.body" | "colors.colorPalette.colors.dimmed" | "colors.colorPalette.dimmed" | "colors.colorPalette.colors.defaultBorder" | "colors.colorPalette.defaultBorder" | "colors.colorPalette.colors.defaultColor" | "colors.colorPalette.defaultColor" | "colors.colorPalette.colors.defaultHover" | "colors.colorPalette.defaultHover" | "colors.colorPalette.colors.default" | "colors.colorPalette.default" | "colors.colorPalette.colors.error" | "colors.colorPalette.error" | "colors.colorPalette.colors.placeholder" | "colors.colorPalette.placeholder" | "colors.colorPalette.colors.gray" | "colors.colorPalette.gray" | "colors.colorPalette.colors.gray.filled" | "colors.colorPalette.gray.filled" | "colors.colorPalette.colors.gray.filledHover" | "colors.colorPalette.gray.filledHover" | "colors.colorPalette.colors.gray.light" | "colors.colorPalette.gray.light" | "colors.colorPalette.colors.gray.lightHover" | "colors.colorPalette.gray.lightHover" | "colors.colorPalette.colors.gray.lightColor" | "colors.colorPalette.gray.lightColor" | "colors.colorPalette.colors.gray.outline" | "colors.colorPalette.gray.outline" | "colors.colorPalette.colors.gray.outlineHover" | "colors.colorPalette.gray.outlineHover" | "colors.colorPalette.colors.gray[0]" | "colors.colorPalette.gray[0]" | "colors.colorPalette.colors.gray[1]" | "colors.colorPalette.gray[1]" | "colors.colorPalette.colors.gray[2]" | "colors.colorPalette.gray[2]" | "colors.colorPalette.colors.gray[3]" | "colors.colorPalette.gray[3]" | "colors.colorPalette.colors.gray[4]" | "colors.colorPalette.gray[4]" | "colors.colorPalette.colors.gray[5]" | "colors.colorPalette.gray[5]" | "colors.colorPalette.colors.gray[6]" | "colors.colorPalette.gray[6]" | "colors.colorPalette.colors.gray[7]" | "colors.colorPalette.gray[7]" | "colors.colorPalette.colors.gray[8]" | "colors.colorPalette.gray[8]" | "colors.colorPalette.colors.gray[9]" | "colors.colorPalette.gray[9]" | "colors.colorPalette.colors.dark" | "colors.colorPalette.dark" | "colors.colorPalette.colors.dark.filled" | "colors.colorPalette.dark.filled" | "colors.colorPalette.colors.dark.filledHover" | "colors.colorPalette.dark.filledHover" | "colors.colorPalette.colors.dark.light" | "colors.colorPalette.dark.light" | "colors.colorPalette.colors.dark.lightHover" | "colors.colorPalette.dark.lightHover" | "colors.colorPalette.colors.dark.lightColor" | "colors.colorPalette.dark.lightColor" | "colors.colorPalette.colors.dark.outline" | "colors.colorPalette.dark.outline" | "colors.colorPalette.colors.dark.outlineHover" | "colors.colorPalette.dark.outlineHover" | "colors.colorPalette.colors.dark[0]" | "colors.colorPalette.dark[0]" | "colors.colorPalette.colors.dark[1]" | "colors.colorPalette.dark[1]" | "colors.colorPalette.colors.dark[2]" | "colors.colorPalette.dark[2]" | "colors.colorPalette.colors.dark[3]" | "colors.colorPalette.dark[3]" | "colors.colorPalette.colors.dark[4]" | "colors.colorPalette.dark[4]" | "colors.colorPalette.colors.dark[5]" | "colors.colorPalette.dark[5]" | "colors.colorPalette.colors.dark[6]" | "colors.colorPalette.dark[6]" | "colors.colorPalette.colors.dark[7]" | "colors.colorPalette.dark[7]" | "colors.colorPalette.colors.dark[8]" | "colors.colorPalette.dark[8]" | "colors.colorPalette.colors.dark[9]" | "colors.colorPalette.dark[9]" | "colors.colorPalette.colors.orange" | "colors.colorPalette.orange" | "colors.colorPalette.colors.orange.filled" | "colors.colorPalette.orange.filled" | "colors.colorPalette.colors.orange.filledHover" | "colors.colorPalette.orange.filledHover" | "colors.colorPalette.colors.orange.light" | "colors.colorPalette.orange.light" | "colors.colorPalette.colors.orange.lightHover" | "colors.colorPalette.orange.lightHover" | "colors.colorPalette.colors.orange.lightColor" | "colors.colorPalette.orange.lightColor" | "colors.colorPalette.colors.orange.outline" | "colors.colorPalette.orange.outline" | "colors.colorPalette.colors.orange.outlineHover" | "colors.colorPalette.orange.outlineHover" | "colors.colorPalette.colors.orange[0]" | "colors.colorPalette.orange[0]" | "colors.colorPalette.colors.orange[1]" | "colors.colorPalette.orange[1]" | "colors.colorPalette.colors.orange[2]" | "colors.colorPalette.orange[2]" | "colors.colorPalette.colors.orange[3]" | "colors.colorPalette.orange[3]" | "colors.colorPalette.colors.orange[4]" | "colors.colorPalette.orange[4]" | "colors.colorPalette.colors.orange[5]" | "colors.colorPalette.orange[5]" | "colors.colorPalette.colors.orange[6]" | "colors.colorPalette.orange[6]" | "colors.colorPalette.colors.orange[7]" | "colors.colorPalette.orange[7]" | "colors.colorPalette.colors.orange[8]" | "colors.colorPalette.orange[8]" | "colors.colorPalette.colors.orange[9]" | "colors.colorPalette.orange[9]" | "colors.colorPalette.colors.teal" | "colors.colorPalette.teal" | "colors.colorPalette.colors.teal.filled" | "colors.colorPalette.teal.filled" | "colors.colorPalette.colors.teal.filledHover" | "colors.colorPalette.teal.filledHover" | "colors.colorPalette.colors.teal.light" | "colors.colorPalette.teal.light" | "colors.colorPalette.colors.teal.lightHover" | "colors.colorPalette.teal.lightHover" | "colors.colorPalette.colors.teal.lightColor" | "colors.colorPalette.teal.lightColor" | "colors.colorPalette.colors.teal.outline" | "colors.colorPalette.teal.outline" | "colors.colorPalette.colors.teal.outlineHover" | "colors.colorPalette.teal.outlineHover" | "colors.colorPalette.colors.teal[0]" | "colors.colorPalette.teal[0]" | "colors.colorPalette.colors.teal[1]" | "colors.colorPalette.teal[1]" | "colors.colorPalette.colors.teal[2]" | "colors.colorPalette.teal[2]" | "colors.colorPalette.colors.teal[3]" | "colors.colorPalette.teal[3]" | "colors.colorPalette.colors.teal[4]" | "colors.colorPalette.teal[4]" | "colors.colorPalette.colors.teal[5]" | "colors.colorPalette.teal[5]" | "colors.colorPalette.colors.teal[6]" | "colors.colorPalette.teal[6]" | "colors.colorPalette.colors.teal[7]" | "colors.colorPalette.teal[7]" | "colors.colorPalette.colors.teal[8]" | "colors.colorPalette.teal[8]" | "colors.colorPalette.colors.teal[9]" | "colors.colorPalette.teal[9]" | "colors.colorPalette.colors.red" | "colors.colorPalette.red" | "colors.colorPalette.colors.red.filled" | "colors.colorPalette.red.filled" | "colors.colorPalette.colors.red.filledHover" | "colors.colorPalette.red.filledHover" | "colors.colorPalette.colors.red.light" | "colors.colorPalette.red.light" | "colors.colorPalette.colors.red.lightHover" | "colors.colorPalette.red.lightHover" | "colors.colorPalette.colors.red.lightColor" | "colors.colorPalette.red.lightColor" | "colors.colorPalette.colors.red.outline" | "colors.colorPalette.red.outline" | "colors.colorPalette.colors.red.outlineHover" | "colors.colorPalette.red.outlineHover" | "colors.colorPalette.colors.red[0]" | "colors.colorPalette.red[0]" | "colors.colorPalette.colors.red[1]" | "colors.colorPalette.red[1]" | "colors.colorPalette.colors.red[2]" | "colors.colorPalette.red[2]" | "colors.colorPalette.colors.red[3]" | "colors.colorPalette.red[3]" | "colors.colorPalette.colors.red[4]" | "colors.colorPalette.red[4]" | "colors.colorPalette.colors.red[5]" | "colors.colorPalette.red[5]" | "colors.colorPalette.colors.red[6]" | "colors.colorPalette.red[6]" | "colors.colorPalette.colors.red[7]" | "colors.colorPalette.red[7]" | "colors.colorPalette.colors.red[8]" | "colors.colorPalette.red[8]" | "colors.colorPalette.colors.red[9]" | "colors.colorPalette.red[9]" | "colors.colorPalette.colors.green" | "colors.colorPalette.green" | "colors.colorPalette.colors.green.filled" | "colors.colorPalette.green.filled" | "colors.colorPalette.colors.green.filledHover" | "colors.colorPalette.green.filledHover" | "colors.colorPalette.colors.green.light" | "colors.colorPalette.green.light" | "colors.colorPalette.colors.green.lightHover" | "colors.colorPalette.green.lightHover" | "colors.colorPalette.colors.green.lightColor" | "colors.colorPalette.green.lightColor" | "colors.colorPalette.colors.green.outline" | "colors.colorPalette.green.outline" | "colors.colorPalette.colors.green.outlineHover" | "colors.colorPalette.green.outlineHover" | "colors.colorPalette.colors.green[0]" | "colors.colorPalette.green[0]" | "colors.colorPalette.colors.green[1]" | "colors.colorPalette.green[1]" | "colors.colorPalette.colors.green[2]" | "colors.colorPalette.green[2]" | "colors.colorPalette.colors.green[3]" | "colors.colorPalette.green[3]" | "colors.colorPalette.colors.green[4]" | "colors.colorPalette.green[4]" | "colors.colorPalette.colors.green[5]" | "colors.colorPalette.green[5]" | "colors.colorPalette.colors.green[6]" | "colors.colorPalette.green[6]" | "colors.colorPalette.colors.green[7]" | "colors.colorPalette.green[7]" | "colors.colorPalette.colors.green[8]" | "colors.colorPalette.green[8]" | "colors.colorPalette.colors.green[9]" | "colors.colorPalette.green[9]" | "colors.colorPalette.colors.yellow" | "colors.colorPalette.yellow" | "colors.colorPalette.colors.yellow.filled" | "colors.colorPalette.yellow.filled" | "colors.colorPalette.colors.yellow.filledHover" | "colors.colorPalette.yellow.filledHover" | "colors.colorPalette.colors.yellow.light" | "colors.colorPalette.yellow.light" | "colors.colorPalette.colors.yellow.lightHover" | "colors.colorPalette.yellow.lightHover" | "colors.colorPalette.colors.yellow.lightColor" | "colors.colorPalette.yellow.lightColor" | "colors.colorPalette.colors.yellow.outline" | "colors.colorPalette.yellow.outline" | "colors.colorPalette.colors.yellow.outlineHover" | "colors.colorPalette.yellow.outlineHover" | "colors.colorPalette.colors.yellow[0]" | "colors.colorPalette.yellow[0]" | "colors.colorPalette.colors.yellow[1]" | "colors.colorPalette.yellow[1]" | "colors.colorPalette.colors.yellow[2]" | "colors.colorPalette.yellow[2]" | "colors.colorPalette.colors.yellow[3]" | "colors.colorPalette.yellow[3]" | "colors.colorPalette.colors.yellow[4]" | "colors.colorPalette.yellow[4]" | "colors.colorPalette.colors.yellow[5]" | "colors.colorPalette.yellow[5]" | "colors.colorPalette.colors.yellow[6]" | "colors.colorPalette.yellow[6]" | "colors.colorPalette.colors.yellow[7]" | "colors.colorPalette.yellow[7]" | "colors.colorPalette.colors.yellow[8]" | "colors.colorPalette.yellow[8]" | "colors.colorPalette.colors.yellow[9]" | "colors.colorPalette.yellow[9]" | "colors.colorPalette.1" | "colors.colorPalette.2" | "colors.colorPalette.3" | "colors.colorPalette.4" | "colors.colorPalette.5" | "colors.colorPalette.6" | "colors.colorPalette.7" | "colors.colorPalette.8" | "colors.colorPalette.9" | "colors.colorPalette.10" | "colors.colorPalette.11" | "colors.colorPalette.12" | "colors.colorPalette.light.1" | "colors.colorPalette.light.2" | "colors.colorPalette.light.3" | "colors.colorPalette.light.4" | "colors.colorPalette.light.5" | "colors.colorPalette.light.6" | "colors.colorPalette.light.7" | "colors.colorPalette.light.8" | "colors.colorPalette.light.9" | "colors.colorPalette.light.10" | "colors.colorPalette.light.11" | "colors.colorPalette.light.12" | "colors.colorPalette.light.a.1" | "colors.colorPalette.a.1" | "colors.colorPalette.light.a.2" | "colors.colorPalette.a.2" | "colors.colorPalette.light.a.3" | "colors.colorPalette.a.3" | "colors.colorPalette.light.a.4" | "colors.colorPalette.a.4" | "colors.colorPalette.light.a.5" | "colors.colorPalette.a.5" | "colors.colorPalette.light.a.6" | "colors.colorPalette.a.6" | "colors.colorPalette.light.a.7" | "colors.colorPalette.a.7" | "colors.colorPalette.light.a.8" | "colors.colorPalette.a.8" | "colors.colorPalette.light.a.9" | "colors.colorPalette.a.9" | "colors.colorPalette.light.a.10" | "colors.colorPalette.a.10" | "colors.colorPalette.light.a.11" | "colors.colorPalette.a.11" | "colors.colorPalette.light.a.12" | "colors.colorPalette.a.12" | "colors.colorPalette.light.p3.1" | "colors.colorPalette.p3.1" | "colors.colorPalette.light.p3.2" | "colors.colorPalette.p3.2" | "colors.colorPalette.light.p3.3" | "colors.colorPalette.p3.3" | "colors.colorPalette.light.p3.4" | "colors.colorPalette.p3.4" | "colors.colorPalette.light.p3.5" | "colors.colorPalette.p3.5" | "colors.colorPalette.light.p3.6" | "colors.colorPalette.p3.6" | "colors.colorPalette.light.p3.7" | "colors.colorPalette.p3.7" | "colors.colorPalette.light.p3.8" | "colors.colorPalette.p3.8" | "colors.colorPalette.light.p3.9" | "colors.colorPalette.p3.9" | "colors.colorPalette.light.p3.10" | "colors.colorPalette.p3.10" | "colors.colorPalette.light.p3.11" | "colors.colorPalette.p3.11" | "colors.colorPalette.light.p3.12" | "colors.colorPalette.p3.12" | "colors.colorPalette.light.p3.a.1" | "colors.colorPalette.p3.a.1" | "colors.colorPalette.light.p3.a.2" | "colors.colorPalette.p3.a.2" | "colors.colorPalette.light.p3.a.3" | "colors.colorPalette.p3.a.3" | "colors.colorPalette.light.p3.a.4" | "colors.colorPalette.p3.a.4" | "colors.colorPalette.light.p3.a.5" | "colors.colorPalette.p3.a.5" | "colors.colorPalette.light.p3.a.6" | "colors.colorPalette.p3.a.6" | "colors.colorPalette.light.p3.a.7" | "colors.colorPalette.p3.a.7" | "colors.colorPalette.light.p3.a.8" | "colors.colorPalette.p3.a.8" | "colors.colorPalette.light.p3.a.9" | "colors.colorPalette.p3.a.9" | "colors.colorPalette.light.p3.a.10" | "colors.colorPalette.p3.a.10" | "colors.colorPalette.light.p3.a.11" | "colors.colorPalette.p3.a.11" | "colors.colorPalette.light.p3.a.12" | "colors.colorPalette.p3.a.12" | "colors.colorPalette.dark.1" | "colors.colorPalette.dark.2" | "colors.colorPalette.dark.3" | "colors.colorPalette.dark.4" | "colors.colorPalette.dark.5" | "colors.colorPalette.dark.6" | "colors.colorPalette.dark.7" | "colors.colorPalette.dark.8" | "colors.colorPalette.dark.9" | "colors.colorPalette.dark.10" | "colors.colorPalette.dark.11" | "colors.colorPalette.dark.12" | "colors.colorPalette.dark.a.1" | "colors.colorPalette.dark.a.2" | "colors.colorPalette.dark.a.3" | "colors.colorPalette.dark.a.4" | "colors.colorPalette.dark.a.5" | "colors.colorPalette.dark.a.6" | "colors.colorPalette.dark.a.7" | "colors.colorPalette.dark.a.8" | "colors.colorPalette.dark.a.9" | "colors.colorPalette.dark.a.10" | "colors.colorPalette.dark.a.11" | "colors.colorPalette.dark.a.12" | "colors.colorPalette.dark.p3.1" | "colors.colorPalette.dark.p3.2" | "colors.colorPalette.dark.p3.3" | "colors.colorPalette.dark.p3.4" | "colors.colorPalette.dark.p3.5" | "colors.colorPalette.dark.p3.6" | "colors.colorPalette.dark.p3.7" | "colors.colorPalette.dark.p3.8" | "colors.colorPalette.dark.p3.9" | "colors.colorPalette.dark.p3.10" | "colors.colorPalette.dark.p3.11" | "colors.colorPalette.dark.p3.12" | "colors.colorPalette.dark.p3.a.1" | "colors.colorPalette.dark.p3.a.2" | "colors.colorPalette.dark.p3.a.3" | "colors.colorPalette.dark.p3.a.4" | "colors.colorPalette.dark.p3.a.5" | "colors.colorPalette.dark.p3.a.6" | "colors.colorPalette.dark.p3.a.7" | "colors.colorPalette.dark.p3.a.8" | "colors.colorPalette.dark.p3.a.9" | "colors.colorPalette.dark.p3.a.10" | "colors.colorPalette.dark.p3.a.11" | "colors.colorPalette.dark.p3.a.12" | "colors.colorPalette.background" | "colors.colorPalette.background.pattern" | "colors.colorPalette.pattern" | "colors.colorPalette.amber.element.fill" | "colors.colorPalette.element.fill" | "colors.colorPalette.fill" | "colors.colorPalette.amber.element.stroke" | "colors.colorPalette.element.stroke" | "colors.colorPalette.stroke" | "colors.colorPalette.amber.element.hiContrast" | "colors.colorPalette.element.hiContrast" | "colors.colorPalette.hiContrast" | "colors.colorPalette.amber.element.loContrast" | "colors.colorPalette.element.loContrast" | "colors.colorPalette.loContrast" | "colors.colorPalette.amber.relation.stroke" | "colors.colorPalette.relation.stroke" | "colors.colorPalette.amber.relation.stroke.selected" | "colors.colorPalette.relation.stroke.selected" | "colors.colorPalette.stroke.selected" | "colors.colorPalette.selected" | "colors.colorPalette.amber.relation.label" | "colors.colorPalette.relation.label" | "colors.colorPalette.label" | "colors.colorPalette.amber.relation.label.bg" | "colors.colorPalette.relation.label.bg" | "colors.colorPalette.label.bg" | "colors.colorPalette.bg" | "colors.colorPalette.blue.element.fill" | "colors.colorPalette.blue.element.stroke" | "colors.colorPalette.blue.element.hiContrast" | "colors.colorPalette.blue.element.loContrast" | "colors.colorPalette.blue.relation.stroke" | "colors.colorPalette.blue.relation.stroke.selected" | "colors.colorPalette.blue.relation.label" | "colors.colorPalette.blue.relation.label.bg" | "colors.colorPalette.gray.element.fill" | "colors.colorPalette.gray.element.stroke" | "colors.colorPalette.gray.element.hiContrast" | "colors.colorPalette.gray.element.loContrast" | "colors.colorPalette.gray.relation.stroke" | "colors.colorPalette.gray.relation.stroke.selected" | "colors.colorPalette.gray.relation.label" | "colors.colorPalette.gray.relation.label.bg" | "colors.colorPalette.slate.element.fill" | "colors.colorPalette.slate.element.stroke" | "colors.colorPalette.slate.element.hiContrast" | "colors.colorPalette.slate.element.loContrast" | "colors.colorPalette.slate.relation.stroke" | "colors.colorPalette.slate.relation.stroke.selected" | "colors.colorPalette.slate.relation.label" | "colors.colorPalette.slate.relation.label.bg" | "colors.colorPalette.green.element.fill" | "colors.colorPalette.green.element.stroke" | "colors.colorPalette.green.element.hiContrast" | "colors.colorPalette.green.element.loContrast" | "colors.colorPalette.green.relation.stroke" | "colors.colorPalette.green.relation.stroke.selected" | "colors.colorPalette.green.relation.label" | "colors.colorPalette.green.relation.label.bg" | "colors.colorPalette.indigo.element.fill" | "colors.colorPalette.indigo.element.stroke" | "colors.colorPalette.indigo.element.hiContrast" | "colors.colorPalette.indigo.element.loContrast" | "colors.colorPalette.indigo.relation.stroke" | "colors.colorPalette.indigo.relation.stroke.selected" | "colors.colorPalette.indigo.relation.label" | "colors.colorPalette.indigo.relation.label.bg" | "colors.colorPalette.muted.element.fill" | "colors.colorPalette.muted.element.stroke" | "colors.colorPalette.muted.element.hiContrast" | "colors.colorPalette.muted.element.loContrast" | "colors.colorPalette.muted.relation.stroke" | "colors.colorPalette.muted.relation.stroke.selected" | "colors.colorPalette.muted.relation.label" | "colors.colorPalette.muted.relation.label.bg" | "colors.colorPalette.primary.element.fill" | "colors.colorPalette.primary.element.stroke" | "colors.colorPalette.primary.element.hiContrast" | "colors.colorPalette.primary.element.loContrast" | "colors.colorPalette.primary.relation.stroke" | "colors.colorPalette.primary.relation.stroke.selected" | "colors.colorPalette.primary.relation.label" | "colors.colorPalette.primary.relation.label.bg" | "colors.colorPalette.red.element.fill" | "colors.colorPalette.red.element.stroke" | "colors.colorPalette.red.element.hiContrast" | "colors.colorPalette.red.element.loContrast" | "colors.colorPalette.red.relation.stroke" | "colors.colorPalette.red.relation.stroke.selected" | "colors.colorPalette.red.relation.label" | "colors.colorPalette.red.relation.label.bg" | "colors.colorPalette.secondary.element.fill" | "colors.colorPalette.secondary.element.stroke" | "colors.colorPalette.secondary.element.hiContrast" | "colors.colorPalette.secondary.element.loContrast" | "colors.colorPalette.secondary.relation.stroke" | "colors.colorPalette.secondary.relation.stroke.selected" | "colors.colorPalette.secondary.relation.label" | "colors.colorPalette.secondary.relation.label.bg" | "colors.colorPalette.sky.element.fill" | "colors.colorPalette.sky.element.stroke" | "colors.colorPalette.sky.element.hiContrast" | "colors.colorPalette.sky.element.loContrast" | "colors.colorPalette.sky.relation.stroke" | "colors.colorPalette.sky.relation.stroke.selected" | "colors.colorPalette.sky.relation.label" | "colors.colorPalette.sky.relation.label.bg" | "colors.colorPalette.compound1.amber.hiContrast" | "colors.colorPalette.amber.hiContrast" | "colors.colorPalette.compound1.amber.loContrast" | "colors.colorPalette.amber.loContrast" | "colors.colorPalette.compound1.amber.fill" | "colors.colorPalette.amber.fill" | "colors.colorPalette.compound1.amber.stroke" | "colors.colorPalette.amber.stroke" | "colors.colorPalette.compound1.blue.hiContrast" | "colors.colorPalette.blue.hiContrast" | "colors.colorPalette.compound1.blue.loContrast" | "colors.colorPalette.blue.loContrast" | "colors.colorPalette.compound1.blue.fill" | "colors.colorPalette.blue.fill" | "colors.colorPalette.compound1.blue.stroke" | "colors.colorPalette.blue.stroke" | "colors.colorPalette.compound1.gray.hiContrast" | "colors.colorPalette.gray.hiContrast" | "colors.colorPalette.compound1.gray.loContrast" | "colors.colorPalette.gray.loContrast" | "colors.colorPalette.compound1.gray.fill" | "colors.colorPalette.gray.fill" | "colors.colorPalette.compound1.gray.stroke" | "colors.colorPalette.gray.stroke" | "colors.colorPalette.compound1.slate.hiContrast" | "colors.colorPalette.slate.hiContrast" | "colors.colorPalette.compound1.slate.loContrast" | "colors.colorPalette.slate.loContrast" | "colors.colorPalette.compound1.slate.fill" | "colors.colorPalette.slate.fill" | "colors.colorPalette.compound1.slate.stroke" | "colors.colorPalette.slate.stroke" | "colors.colorPalette.compound1.green.hiContrast" | "colors.colorPalette.green.hiContrast" | "colors.colorPalette.compound1.green.loContrast" | "colors.colorPalette.green.loContrast" | "colors.colorPalette.compound1.green.fill" | "colors.colorPalette.green.fill" | "colors.colorPalette.compound1.green.stroke" | "colors.colorPalette.green.stroke" | "colors.colorPalette.compound1.indigo.hiContrast" | "colors.colorPalette.indigo.hiContrast" | "colors.colorPalette.compound1.indigo.loContrast" | "colors.colorPalette.indigo.loContrast" | "colors.colorPalette.compound1.indigo.fill" | "colors.colorPalette.indigo.fill" | "colors.colorPalette.compound1.indigo.stroke" | "colors.colorPalette.indigo.stroke" | "colors.colorPalette.compound1.muted.hiContrast" | "colors.colorPalette.muted.hiContrast" | "colors.colorPalette.compound1.muted.loContrast" | "colors.colorPalette.muted.loContrast" | "colors.colorPalette.compound1.muted.fill" | "colors.colorPalette.muted.fill" | "colors.colorPalette.compound1.muted.stroke" | "colors.colorPalette.muted.stroke" | "colors.colorPalette.compound1.primary.hiContrast" | "colors.colorPalette.primary.hiContrast" | "colors.colorPalette.compound1.primary.loContrast" | "colors.colorPalette.primary.loContrast" | "colors.colorPalette.compound1.primary.fill" | "colors.colorPalette.primary.fill" | "colors.colorPalette.compound1.primary.stroke" | "colors.colorPalette.primary.stroke" | "colors.colorPalette.compound1.red.hiContrast" | "colors.colorPalette.red.hiContrast" | "colors.colorPalette.compound1.red.loContrast" | "colors.colorPalette.red.loContrast" | "colors.colorPalette.compound1.red.fill" | "colors.colorPalette.red.fill" | "colors.colorPalette.compound1.red.stroke" | "colors.colorPalette.red.stroke" | "colors.colorPalette.compound1.secondary.hiContrast" | "colors.colorPalette.secondary.hiContrast" | "colors.colorPalette.compound1.secondary.loContrast" | "colors.colorPalette.secondary.loContrast" | "colors.colorPalette.compound1.secondary.fill" | "colors.colorPalette.secondary.fill" | "colors.colorPalette.compound1.secondary.stroke" | "colors.colorPalette.secondary.stroke" | "colors.colorPalette.compound1.sky.hiContrast" | "colors.colorPalette.sky.hiContrast" | "colors.colorPalette.compound1.sky.loContrast" | "colors.colorPalette.sky.loContrast" | "colors.colorPalette.compound1.sky.fill" | "colors.colorPalette.sky.fill" | "colors.colorPalette.compound1.sky.stroke" | "colors.colorPalette.sky.stroke" | "colors.colorPalette.compound2.amber.hiContrast" | "colors.colorPalette.compound2.amber.loContrast" | "colors.colorPalette.compound2.amber.fill" | "colors.colorPalette.compound2.amber.stroke" | "colors.colorPalette.compound2.blue.hiContrast" | "colors.colorPalette.compound2.blue.loContrast" | "colors.colorPalette.compound2.blue.fill" | "colors.colorPalette.compound2.blue.stroke" | "colors.colorPalette.compound2.gray.hiContrast" | "colors.colorPalette.compound2.gray.loContrast" | "colors.colorPalette.compound2.gray.fill" | "colors.colorPalette.compound2.gray.stroke" | "colors.colorPalette.compound2.slate.hiContrast" | "colors.colorPalette.compound2.slate.loContrast" | "colors.colorPalette.compound2.slate.fill" | "colors.colorPalette.compound2.slate.stroke" | "colors.colorPalette.compound2.green.hiContrast" | "colors.colorPalette.compound2.green.loContrast" | "colors.colorPalette.compound2.green.fill" | "colors.colorPalette.compound2.green.stroke" | "colors.colorPalette.compound2.indigo.hiContrast" | "colors.colorPalette.compound2.indigo.loContrast" | "colors.colorPalette.compound2.indigo.fill" | "colors.colorPalette.compound2.indigo.stroke" | "colors.colorPalette.compound2.muted.hiContrast" | "colors.colorPalette.compound2.muted.loContrast" | "colors.colorPalette.compound2.muted.fill" | "colors.colorPalette.compound2.muted.stroke" | "colors.colorPalette.compound2.primary.hiContrast" | "colors.colorPalette.compound2.primary.loContrast" | "colors.colorPalette.compound2.primary.fill" | "colors.colorPalette.compound2.primary.stroke" | "colors.colorPalette.compound2.red.hiContrast" | "colors.colorPalette.compound2.red.loContrast" | "colors.colorPalette.compound2.red.fill" | "colors.colorPalette.compound2.red.stroke" | "colors.colorPalette.compound2.secondary.hiContrast" | "colors.colorPalette.compound2.secondary.loContrast" | "colors.colorPalette.compound2.secondary.fill" | "colors.colorPalette.compound2.secondary.stroke" | "colors.colorPalette.compound2.sky.hiContrast" | "colors.colorPalette.compound2.sky.loContrast" | "colors.colorPalette.compound2.sky.fill" | "colors.colorPalette.compound2.sky.stroke" | "colors.colorPalette.compound3.amber.hiContrast" | "colors.colorPalette.compound3.amber.loContrast" | "colors.colorPalette.compound3.amber.fill" | "colors.colorPalette.compound3.amber.stroke" | "colors.colorPalette.compound3.blue.hiContrast" | "colors.colorPalette.compound3.blue.loContrast" | "colors.colorPalette.compound3.blue.fill" | "colors.colorPalette.compound3.blue.stroke" | "colors.colorPalette.compound3.gray.hiContrast" | "colors.colorPalette.compound3.gray.loContrast" | "colors.colorPalette.compound3.gray.fill" | "colors.colorPalette.compound3.gray.stroke" | "colors.colorPalette.compound3.slate.hiContrast" | "colors.colorPalette.compound3.slate.loContrast" | "colors.colorPalette.compound3.slate.fill" | "colors.colorPalette.compound3.slate.stroke" | "colors.colorPalette.compound3.green.hiContrast" | "colors.colorPalette.compound3.green.loContrast" | "colors.colorPalette.compound3.green.fill" | "colors.colorPalette.compound3.green.stroke" | "colors.colorPalette.compound3.indigo.hiContrast" | "colors.colorPalette.compound3.indigo.loContrast" | "colors.colorPalette.compound3.indigo.fill" | "colors.colorPalette.compound3.indigo.stroke" | "colors.colorPalette.compound3.muted.hiContrast" | "colors.colorPalette.compound3.muted.loContrast" | "colors.colorPalette.compound3.muted.fill" | "colors.colorPalette.compound3.muted.stroke" | "colors.colorPalette.compound3.primary.hiContrast" | "colors.colorPalette.compound3.primary.loContrast" | "colors.colorPalette.compound3.primary.fill" | "colors.colorPalette.compound3.primary.stroke" | "colors.colorPalette.compound3.red.hiContrast" | "colors.colorPalette.compound3.red.loContrast" | "colors.colorPalette.compound3.red.fill" | "colors.colorPalette.compound3.red.stroke" | "colors.colorPalette.compound3.secondary.hiContrast" | "colors.colorPalette.compound3.secondary.loContrast" | "colors.colorPalette.compound3.secondary.fill" | "colors.colorPalette.compound3.secondary.stroke" | "colors.colorPalette.compound3.sky.hiContrast" | "colors.colorPalette.compound3.sky.loContrast" | "colors.colorPalette.compound3.sky.fill" | "colors.colorPalette.compound3.sky.stroke" | "colors.colorPalette.compound4.amber.hiContrast" | "colors.colorPalette.compound4.amber.loContrast" | "colors.colorPalette.compound4.amber.fill" | "colors.colorPalette.compound4.amber.stroke" | "colors.colorPalette.compound4.blue.hiContrast" | "colors.colorPalette.compound4.blue.loContrast" | "colors.colorPalette.compound4.blue.fill" | "colors.colorPalette.compound4.blue.stroke" | "colors.colorPalette.compound4.gray.hiContrast" | "colors.colorPalette.compound4.gray.loContrast" | "colors.colorPalette.compound4.gray.fill" | "colors.colorPalette.compound4.gray.stroke" | "colors.colorPalette.compound4.slate.hiContrast" | "colors.colorPalette.compound4.slate.loContrast" | "colors.colorPalette.compound4.slate.fill" | "colors.colorPalette.compound4.slate.stroke" | "colors.colorPalette.compound4.green.hiContrast" | "colors.colorPalette.compound4.green.loContrast" | "colors.colorPalette.compound4.green.fill" | "colors.colorPalette.compound4.green.stroke" | "colors.colorPalette.compound4.indigo.hiContrast" | "colors.colorPalette.compound4.indigo.loContrast" | "colors.colorPalette.compound4.indigo.fill" | "colors.colorPalette.compound4.indigo.stroke" | "colors.colorPalette.compound4.muted.hiContrast" | "colors.colorPalette.compound4.muted.loContrast" | "colors.colorPalette.compound4.muted.fill" | "colors.colorPalette.compound4.muted.stroke" | "colors.colorPalette.compound4.primary.hiContrast" | "colors.colorPalette.compound4.primary.loContrast" | "colors.colorPalette.compound4.primary.fill" | "colors.colorPalette.compound4.primary.stroke" | "colors.colorPalette.compound4.red.hiContrast" | "colors.colorPalette.compound4.red.loContrast" | "colors.colorPalette.compound4.red.fill" | "colors.colorPalette.compound4.red.stroke" | "colors.colorPalette.compound4.secondary.hiContrast" | "colors.colorPalette.compound4.secondary.loContrast" | "colors.colorPalette.compound4.secondary.fill" | "colors.colorPalette.compound4.secondary.stroke" | "colors.colorPalette.compound4.sky.hiContrast" | "colors.colorPalette.compound4.sky.loContrast" | "colors.colorPalette.compound4.sky.fill" | "colors.colorPalette.compound4.sky.stroke" | "colors.colorPalette.compound5.amber.hiContrast" | "colors.colorPalette.compound5.amber.loContrast" | "colors.colorPalette.compound5.amber.fill" | "colors.colorPalette.compound5.amber.stroke" | "colors.colorPalette.compound5.blue.hiContrast" | "colors.colorPalette.compound5.blue.loContrast" | "colors.colorPalette.compound5.blue.fill" | "colors.colorPalette.compound5.blue.stroke" | "colors.colorPalette.compound5.gray.hiContrast" | "colors.colorPalette.compound5.gray.loContrast" | "colors.colorPalette.compound5.gray.fill" | "colors.colorPalette.compound5.gray.stroke" | "colors.colorPalette.compound5.slate.hiContrast" | "colors.colorPalette.compound5.slate.loContrast" | "colors.colorPalette.compound5.slate.fill" | "colors.colorPalette.compound5.slate.stroke" | "colors.colorPalette.compound5.green.hiContrast" | "colors.colorPalette.compound5.green.loContrast" | "colors.colorPalette.compound5.green.fill" | "colors.colorPalette.compound5.green.stroke" | "colors.colorPalette.compound5.indigo.hiContrast" | "colors.colorPalette.compound5.indigo.loContrast" | "colors.colorPalette.compound5.indigo.fill" | "colors.colorPalette.compound5.indigo.stroke" | "colors.colorPalette.compound5.muted.hiContrast" | "colors.colorPalette.compound5.muted.loContrast" | "colors.colorPalette.compound5.muted.fill" | "colors.colorPalette.compound5.muted.stroke" | "colors.colorPalette.compound5.primary.hiContrast" | "colors.colorPalette.compound5.primary.loContrast" | "colors.colorPalette.compound5.primary.fill" | "colors.colorPalette.compound5.primary.stroke" | "colors.colorPalette.compound5.red.hiContrast" | "colors.colorPalette.compound5.red.loContrast" | "colors.colorPalette.compound5.red.fill" | "colors.colorPalette.compound5.red.stroke" | "colors.colorPalette.compound5.secondary.hiContrast" | "colors.colorPalette.compound5.secondary.loContrast" | "colors.colorPalette.compound5.secondary.fill" | "colors.colorPalette.compound5.secondary.stroke" | "colors.colorPalette.compound5.sky.hiContrast" | "colors.colorPalette.compound5.sky.loContrast" | "colors.colorPalette.compound5.sky.fill" | "colors.colorPalette.compound5.sky.stroke" | "colors.colorPalette.mixColor" | "colors.colorPalette.tag.bg" | "colors.colorPalette.tag.bg.hover" | "colors.colorPalette.bg.hover" | "colors.colorPalette.hover" | "colors.colorPalette.tag.border" | "colors.colorPalette.border" | "colors.colorPalette.tag.text" | "colors.colorPalette.palette" | "colors.colorPalette.palette.fill" | "colors.colorPalette.palette.stroke" | "colors.colorPalette.palette.hiContrast" | "colors.colorPalette.palette.loContrast"
|
|
2
|
+
export type Token = "radii.${RadiusToken}" | "fontSizes.${FontSizeToken}" | "shadows.${ShadowToken}" | "lineHeights.${LineHeightToken}" | "borders.${BorderToken}" | "spacing.${SpacingToken}" | "colors.${ColorToken}" | "fonts.${FontToken}" | "easings.${EasingToken}" | "durations.${DurationToken}" | "breakpoints.${BreakpointToken}" | "sizes.${SizeToken}"
|
|
3
3
|
|
|
4
4
|
export type ColorPalette = "mantine" | "mantine.colors.primary" | "mantine.colors" | "mantine.colors.gray" | "mantine.colors.dark" | "mantine.colors.orange" | "mantine.colors.teal" | "mantine.colors.red" | "mantine.colors.green" | "mantine.colors.yellow" | "transparent" | "amber" | "amber.light" | "amber.light.a" | "amber.light.p3" | "amber.light.p3.a" | "amber.dark" | "amber.dark.a" | "amber.dark.p3" | "amber.dark.p3.a" | "amber.a" | "amber.p3" | "amber.p3.a" | "blue" | "blue.light" | "blue.light.a" | "blue.light.p3" | "blue.light.p3.a" | "blue.dark" | "blue.dark.a" | "blue.dark.p3" | "blue.dark.p3.a" | "blue.a" | "blue.p3" | "blue.p3.a" | "crimson" | "crimson.light" | "crimson.light.a" | "crimson.light.p3" | "crimson.light.p3.a" | "crimson.dark" | "crimson.dark.a" | "crimson.dark.p3" | "crimson.dark.p3.a" | "crimson.a" | "crimson.p3" | "crimson.p3.a" | "grass" | "grass.light" | "grass.light.a" | "grass.light.p3" | "grass.light.p3.a" | "grass.dark" | "grass.dark.a" | "grass.dark.p3" | "grass.dark.p3.a" | "grass.a" | "grass.p3" | "grass.p3.a" | "indigo" | "indigo.light" | "indigo.light.a" | "indigo.light.p3" | "indigo.light.p3.a" | "indigo.dark" | "indigo.dark.a" | "indigo.dark.p3" | "indigo.dark.p3.a" | "indigo.a" | "indigo.p3" | "indigo.p3.a" | "lime" | "lime.light" | "lime.light.a" | "lime.light.p3" | "lime.light.p3.a" | "lime.dark" | "lime.dark.a" | "lime.dark.p3" | "lime.dark.p3.a" | "lime.a" | "lime.p3" | "lime.p3.a" | "orange" | "orange.light" | "orange.light.a" | "orange.light.p3" | "orange.light.p3.a" | "orange.dark" | "orange.dark.a" | "orange.dark.p3" | "orange.dark.p3.a" | "orange.a" | "orange.p3" | "orange.p3.a" | "pink" | "pink.light" | "pink.light.a" | "pink.light.p3" | "pink.light.p3.a" | "pink.dark" | "pink.dark.a" | "pink.dark.p3" | "pink.dark.p3.a" | "pink.a" | "pink.p3" | "pink.p3.a" | "purple" | "purple.light" | "purple.light.a" | "purple.light.p3" | "purple.light.p3.a" | "purple.dark" | "purple.dark.a" | "purple.dark.p3" | "purple.dark.p3.a" | "purple.a" | "purple.p3" | "purple.p3.a" | "red" | "red.light" | "red.light.a" | "red.light.p3" | "red.light.p3.a" | "red.dark" | "red.dark.a" | "red.dark.p3" | "red.dark.p3.a" | "red.a" | "red.p3" | "red.p3.a" | "ruby" | "ruby.light" | "ruby.light.a" | "ruby.light.p3" | "ruby.light.p3.a" | "ruby.dark" | "ruby.dark.a" | "ruby.dark.p3" | "ruby.dark.p3.a" | "ruby.a" | "ruby.p3" | "ruby.p3.a" | "teal" | "teal.light" | "teal.light.a" | "teal.light.p3" | "teal.light.p3.a" | "teal.dark" | "teal.dark.a" | "teal.dark.p3" | "teal.dark.p3.a" | "teal.a" | "teal.p3" | "teal.p3.a" | "tomato" | "tomato.light" | "tomato.light.a" | "tomato.light.p3" | "tomato.light.p3.a" | "tomato.dark" | "tomato.dark.a" | "tomato.dark.p3" | "tomato.dark.p3.a" | "tomato.a" | "tomato.p3" | "tomato.p3.a" | "violet" | "violet.light" | "violet.light.a" | "violet.light.p3" | "violet.light.p3.a" | "violet.dark" | "violet.dark.a" | "violet.dark.p3" | "violet.dark.p3.a" | "violet.a" | "violet.p3" | "violet.p3.a" | "yellow" | "yellow.light" | "yellow.light.a" | "yellow.light.p3" | "yellow.light.p3.a" | "yellow.dark" | "yellow.dark.a" | "yellow.dark.p3" | "yellow.dark.p3.a" | "yellow.a" | "yellow.p3" | "yellow.p3.a" | "likec4" | "likec4.background" | "likec4.amber" | "likec4.amber.element" | "likec4.amber.relation.stroke" | "likec4.amber.relation" | "likec4.amber.relation.label" | "likec4.blue" | "likec4.blue.element" | "likec4.blue.relation.stroke" | "likec4.blue.relation" | "likec4.blue.relation.label" | "likec4.gray" | "likec4.gray.element" | "likec4.gray.relation.stroke" | "likec4.gray.relation" | "likec4.gray.relation.label" | "likec4.slate" | "likec4.slate.element" | "likec4.slate.relation.stroke" | "likec4.slate.relation" | "likec4.slate.relation.label" | "likec4.green" | "likec4.green.element" | "likec4.green.relation.stroke" | "likec4.green.relation" | "likec4.green.relation.label" | "likec4.indigo" | "likec4.indigo.element" | "likec4.indigo.relation.stroke" | "likec4.indigo.relation" | "likec4.indigo.relation.label" | "likec4.muted" | "likec4.muted.element" | "likec4.muted.relation.stroke" | "likec4.muted.relation" | "likec4.muted.relation.label" | "likec4.primary" | "likec4.primary.element" | "likec4.primary.relation.stroke" | "likec4.primary.relation" | "likec4.primary.relation.label" | "likec4.red" | "likec4.red.element" | "likec4.red.relation.stroke" | "likec4.red.relation" | "likec4.red.relation.label" | "likec4.secondary" | "likec4.secondary.element" | "likec4.secondary.relation.stroke" | "likec4.secondary.relation" | "likec4.secondary.relation.label" | "likec4.sky" | "likec4.sky.element" | "likec4.sky.relation.stroke" | "likec4.sky.relation" | "likec4.sky.relation.label" | "likec4.compound1" | "likec4.compound1.amber" | "likec4.compound1.blue" | "likec4.compound1.gray" | "likec4.compound1.slate" | "likec4.compound1.green" | "likec4.compound1.indigo" | "likec4.compound1.muted" | "likec4.compound1.primary" | "likec4.compound1.red" | "likec4.compound1.secondary" | "likec4.compound1.sky" | "likec4.compound2" | "likec4.compound2.amber" | "likec4.compound2.blue" | "likec4.compound2.gray" | "likec4.compound2.slate" | "likec4.compound2.green" | "likec4.compound2.indigo" | "likec4.compound2.muted" | "likec4.compound2.primary" | "likec4.compound2.red" | "likec4.compound2.secondary" | "likec4.compound2.sky" | "likec4.compound3" | "likec4.compound3.amber" | "likec4.compound3.blue" | "likec4.compound3.gray" | "likec4.compound3.slate" | "likec4.compound3.green" | "likec4.compound3.indigo" | "likec4.compound3.muted" | "likec4.compound3.primary" | "likec4.compound3.red" | "likec4.compound3.secondary" | "likec4.compound3.sky" | "likec4.compound4" | "likec4.compound4.amber" | "likec4.compound4.blue" | "likec4.compound4.gray" | "likec4.compound4.slate" | "likec4.compound4.green" | "likec4.compound4.indigo" | "likec4.compound4.muted" | "likec4.compound4.primary" | "likec4.compound4.red" | "likec4.compound4.secondary" | "likec4.compound4.sky" | "likec4.compound5" | "likec4.compound5.amber" | "likec4.compound5.blue" | "likec4.compound5.gray" | "likec4.compound5.slate" | "likec4.compound5.green" | "likec4.compound5.indigo" | "likec4.compound5.muted" | "likec4.compound5.primary" | "likec4.compound5.red" | "likec4.compound5.secondary" | "likec4.compound5.sky" | "likec4.tag.bg" | "likec4.tag" | "likec4.palette" | "likec4.relation.stroke" | "likec4.relation" | "likec4.relation.label"
|
|
5
5
|
|
|
@@ -10,7 +10,7 @@ export interface Conditions {
|
|
|
10
10
|
"_focusWithin": string
|
|
11
11
|
/** `&:is(:focus-visible, [data-focus-visible])` */
|
|
12
12
|
"_focusVisible": string
|
|
13
|
-
/** `&:is(:disabled, [disabled], [data-disabled])` */
|
|
13
|
+
/** `&:is(:disabled, [disabled], [data-disabled], [aria-disabled=true])` */
|
|
14
14
|
"_disabled": string
|
|
15
15
|
/** `&:is(:active, [data-active])` */
|
|
16
16
|
"_active": string
|
|
@@ -18,7 +18,7 @@ export interface Conditions {
|
|
|
18
18
|
"_visited": string
|
|
19
19
|
/** `&:target` */
|
|
20
20
|
"_target": string
|
|
21
|
-
/** `&:is(:read-only, [data-read-only])` */
|
|
21
|
+
/** `&:is(:read-only, [data-read-only], [aria-readonly=true])` */
|
|
22
22
|
"_readOnly": string
|
|
23
23
|
/** `&:read-write` */
|
|
24
24
|
"_readWrite": string
|
|
@@ -80,7 +80,7 @@ export interface Conditions {
|
|
|
80
80
|
"_peerFocusWithin": string
|
|
81
81
|
/** `.peer:is(:focus-visible, [data-focus-visible]) ~ &` */
|
|
82
82
|
"_peerFocusVisible": string
|
|
83
|
-
/** `.peer:is(:disabled, [disabled], [data-disabled]) ~ &` */
|
|
83
|
+
/** `.peer:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) ~ &` */
|
|
84
84
|
"_peerDisabled": string
|
|
85
85
|
/** `.peer:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) ~ &` */
|
|
86
86
|
"_peerChecked": string
|
|
@@ -100,13 +100,13 @@ export interface Conditions {
|
|
|
100
100
|
"_groupFocusWithin": string
|
|
101
101
|
/** `.group:is(:focus-visible, [data-focus-visible]) &` */
|
|
102
102
|
"_groupFocusVisible": string
|
|
103
|
-
/** `.group:is(:disabled, [disabled], [data-disabled]) &` */
|
|
103
|
+
/** `.group:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) &` */
|
|
104
104
|
"_groupDisabled": string
|
|
105
105
|
/** `.group:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) &` */
|
|
106
106
|
"_groupChecked": string
|
|
107
107
|
/** `.group:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) &` */
|
|
108
108
|
"_groupExpanded": string
|
|
109
|
-
/** `.group:is(:invalid, [data-invalid]) &` */
|
|
109
|
+
/** `.group:is(:invalid, [data-invalid], [aria-invalid=true]) &` */
|
|
110
110
|
"_groupInvalid": string
|
|
111
111
|
/** `&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state="indeterminate"])` */
|
|
112
112
|
"_indeterminate": string
|
|
@@ -114,7 +114,7 @@ export interface Conditions {
|
|
|
114
114
|
"_required": string
|
|
115
115
|
/** `&:is(:valid, [data-valid])` */
|
|
116
116
|
"_valid": string
|
|
117
|
-
/** `&:is(:invalid, [data-invalid])` */
|
|
117
|
+
/** `&:is(:invalid, [data-invalid], [aria-invalid=true])` */
|
|
118
118
|
"_invalid": string
|
|
119
119
|
/** `&:autofill` */
|
|
120
120
|
"_autofill": string
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@likec4/styles",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.34.0",
|
|
5
5
|
"bugs": "https://github.com/likec4/likec4/issues",
|
|
6
6
|
"homepage": "https://likec4.dev",
|
|
7
7
|
"author": "Denis Davydkov <denis@davydkov.com>",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"./dev": "./dev.ts"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@pandacss/dev": "^0.
|
|
60
|
+
"@pandacss/dev": "^0.54.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependenciesMeta": {
|
|
63
63
|
"@pandacss/dev": {
|
|
@@ -72,13 +72,13 @@
|
|
|
72
72
|
"@types/picomatch": "^4.0.0",
|
|
73
73
|
"@types/react": "19.1.8",
|
|
74
74
|
"@types/react-dom": "19.1.6",
|
|
75
|
-
"@pandacss/dev": "^0.
|
|
75
|
+
"@pandacss/dev": "^0.54.0",
|
|
76
76
|
"postcss": "8.5.5",
|
|
77
77
|
"nano-spawn": "^1.0.2",
|
|
78
78
|
"unbuild": "3.5.0",
|
|
79
79
|
"typescript": "5.8.3",
|
|
80
|
-
"@likec4/style-preset": "1.
|
|
81
|
-
"@likec4/tsconfig": "1.
|
|
80
|
+
"@likec4/style-preset": "1.34.0",
|
|
81
|
+
"@likec4/tsconfig": "1.34.0"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
84
|
"typecheck": "tsc --build --verbose",
|
package/preset.mjs
CHANGED
|
@@ -6998,9 +6998,8 @@ const index = definePreset({
|
|
|
6998
6998
|
position: "relative",
|
|
6999
6999
|
width: "100%",
|
|
7000
7000
|
height: "100%",
|
|
7001
|
-
padding:
|
|
7002
|
-
margin:
|
|
7003
|
-
boxSizing: "border-box",
|
|
7001
|
+
padding: "0px",
|
|
7002
|
+
margin: "0px",
|
|
7004
7003
|
border: "0px solid transparent"
|
|
7005
7004
|
},
|
|
7006
7005
|
[`${root} .react-flow:is(.not-initialized)`]: {
|