@atlaskit/tokens 1.17.1 → 1.19.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/CHANGELOG.md +102 -0
- package/dist/cjs/artifacts/generated-pairs.js +2 -2
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +92 -77
- package/dist/cjs/artifacts/themes/atlassian-dark.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-legacy-dark.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-legacy-light.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-light.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +84 -3
- package/dist/cjs/artifacts/token-names.js +82 -1
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +2044 -284
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +2052 -292
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +2038 -278
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +2037 -277
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +44 -99
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +42 -97
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +42 -97
- package/dist/cjs/babel-plugin/plugin.js +2 -2
- package/dist/cjs/get-global-theme.js +2 -2
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/typography-palette.js +46 -40
- package/dist/cjs/tokens/atlassian-dark/color/accent.js +360 -40
- package/dist/cjs/tokens/atlassian-legacy-dark/color/accent.js +396 -52
- package/dist/cjs/tokens/atlassian-legacy-light/color/accent.js +396 -52
- package/dist/cjs/tokens/atlassian-light/color/accent.js +360 -40
- package/dist/cjs/tokens/atlassian-typography/theme.js +10 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +12 -2
- package/dist/cjs/tokens/atlassian-typography-minor3/theme.js +10 -0
- package/dist/cjs/tokens/default/color/accent.js +920 -200
- package/dist/cjs/tokens/default/typography/font.js +8 -0
- package/dist/cjs/utils/generate-custom-color-ramp.js +2 -2
- package/dist/es2019/artifacts/generated-pairs.js +2 -2
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +92 -77
- package/dist/es2019/artifacts/themes/atlassian-dark.js +81 -1
- package/dist/es2019/artifacts/themes/atlassian-legacy-dark.js +85 -5
- package/dist/es2019/artifacts/themes/atlassian-legacy-light.js +86 -6
- package/dist/es2019/artifacts/themes/atlassian-light.js +81 -1
- package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +4 -3
- package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +2 -1
- package/dist/es2019/artifacts/themes/atlassian-typography.js +2 -1
- package/dist/es2019/artifacts/token-default-values.js +84 -3
- package/dist/es2019/artifacts/token-names.js +82 -1
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +2044 -284
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +2052 -292
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +2038 -278
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +2037 -277
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +44 -99
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +42 -97
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +42 -97
- package/dist/es2019/get-theme-styles.js +1 -2
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/typography-palette.js +44 -38
- package/dist/es2019/tokens/atlassian-dark/color/accent.js +360 -40
- package/dist/es2019/tokens/atlassian-legacy-dark/color/accent.js +396 -52
- package/dist/es2019/tokens/atlassian-legacy-light/color/accent.js +396 -52
- package/dist/es2019/tokens/atlassian-light/color/accent.js +360 -40
- package/dist/es2019/tokens/atlassian-typography/theme.js +10 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +12 -2
- package/dist/es2019/tokens/atlassian-typography-minor3/theme.js +10 -0
- package/dist/es2019/tokens/default/color/accent.js +920 -200
- package/dist/es2019/tokens/default/typography/font.js +8 -0
- package/dist/esm/artifacts/generated-pairs.js +2 -2
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +92 -77
- package/dist/esm/artifacts/themes/atlassian-dark.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-legacy-dark.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-legacy-light.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-light.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +84 -3
- package/dist/esm/artifacts/token-names.js +82 -1
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +2044 -284
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +2052 -292
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +2038 -278
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +2037 -277
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +44 -99
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +42 -97
- package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +42 -97
- package/dist/esm/babel-plugin/plugin.js +2 -2
- package/dist/esm/get-global-theme.js +2 -2
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/typography-palette.js +46 -40
- package/dist/esm/tokens/atlassian-dark/color/accent.js +360 -40
- package/dist/esm/tokens/atlassian-legacy-dark/color/accent.js +396 -52
- package/dist/esm/tokens/atlassian-legacy-light/color/accent.js +396 -52
- package/dist/esm/tokens/atlassian-light/color/accent.js +360 -40
- package/dist/esm/tokens/atlassian-typography/theme.js +10 -0
- package/dist/esm/tokens/atlassian-typography-adg3/theme.js +12 -2
- package/dist/esm/tokens/atlassian-typography-minor3/theme.js +10 -0
- package/dist/esm/tokens/default/color/accent.js +920 -200
- package/dist/esm/tokens/default/typography/font.js +8 -0
- package/dist/esm/utils/generate-custom-color-ramp.js +2 -2
- package/dist/types/artifacts/generated-pairs.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-dark.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-legacy-dark.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-legacy-light.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-light.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +84 -3
- package/dist/types/artifacts/token-names.d.ts +163 -1
- package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +2 -45
- package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +2 -81
- package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +2 -81
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/palettes/typography-palette.d.ts +1 -1
- package/dist/types/types.d.ts +206 -46
- package/dist/types-ts4.5/artifacts/generated-pairs.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-dark.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-legacy-dark.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-legacy-light.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-light.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +84 -3
- package/dist/types-ts4.5/artifacts/token-names.d.ts +163 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +2 -45
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +2 -81
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +2 -81
- package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
- package/dist/types-ts4.5/palettes/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/types.d.ts +206 -46
- package/figma/atlassian-dark.json +720 -0
- package/figma/atlassian-legacy-dark.json +724 -4
- package/figma/atlassian-legacy-light.json +724 -4
- package/figma/atlassian-light.json +720 -0
- package/package.json +1 -1
- package/report.api.md +362 -40
- package/tmp/api-report-tmp.d.ts +164 -2
|
@@ -730,6 +730,24 @@
|
|
|
730
730
|
},
|
|
731
731
|
"value": "#EEFBDA"
|
|
732
732
|
},
|
|
733
|
+
"Legacy light/color.background.accent.lime.subtlest.hovered": {
|
|
734
|
+
"attributes": {
|
|
735
|
+
"group": "paint",
|
|
736
|
+
"state": "active",
|
|
737
|
+
"introduced": "1.19.0",
|
|
738
|
+
"description": "Hovered state of color.background.accent.lime.subtlest."
|
|
739
|
+
},
|
|
740
|
+
"value": "#D3F1A7"
|
|
741
|
+
},
|
|
742
|
+
"Legacy light/color.background.accent.lime.subtlest.pressed": {
|
|
743
|
+
"attributes": {
|
|
744
|
+
"group": "paint",
|
|
745
|
+
"state": "active",
|
|
746
|
+
"introduced": "1.19.0",
|
|
747
|
+
"description": "Pressed state of color.background.accent.lime.subtlest."
|
|
748
|
+
},
|
|
749
|
+
"value": "#B3DF72"
|
|
750
|
+
},
|
|
733
751
|
"Legacy light/color.background.accent.lime.subtler": {
|
|
734
752
|
"attributes": {
|
|
735
753
|
"group": "paint",
|
|
@@ -739,6 +757,24 @@
|
|
|
739
757
|
},
|
|
740
758
|
"value": "#D3F1A7"
|
|
741
759
|
},
|
|
760
|
+
"Legacy light/color.background.accent.lime.subtler.hovered": {
|
|
761
|
+
"attributes": {
|
|
762
|
+
"group": "paint",
|
|
763
|
+
"state": "active",
|
|
764
|
+
"introduced": "1.19.0",
|
|
765
|
+
"description": "Hovered state of color.background.accent.lime.subtler."
|
|
766
|
+
},
|
|
767
|
+
"value": "#B3DF72"
|
|
768
|
+
},
|
|
769
|
+
"Legacy light/color.background.accent.lime.subtler.pressed": {
|
|
770
|
+
"attributes": {
|
|
771
|
+
"group": "paint",
|
|
772
|
+
"state": "active",
|
|
773
|
+
"introduced": "1.19.0",
|
|
774
|
+
"description": "Pressed state of color.background.accent.lime.subtler."
|
|
775
|
+
},
|
|
776
|
+
"value": "#94C748"
|
|
777
|
+
},
|
|
742
778
|
"Legacy light/color.background.accent.lime.subtle": {
|
|
743
779
|
"attributes": {
|
|
744
780
|
"group": "paint",
|
|
@@ -748,6 +784,24 @@
|
|
|
748
784
|
},
|
|
749
785
|
"value": "#94C748"
|
|
750
786
|
},
|
|
787
|
+
"Legacy light/color.background.accent.lime.subtle.hovered": {
|
|
788
|
+
"attributes": {
|
|
789
|
+
"group": "paint",
|
|
790
|
+
"state": "active",
|
|
791
|
+
"introduced": "1.19.0",
|
|
792
|
+
"description": "Hovered state of color.background.accent.lime.subtle."
|
|
793
|
+
},
|
|
794
|
+
"value": "#B3DF72"
|
|
795
|
+
},
|
|
796
|
+
"Legacy light/color.background.accent.lime.subtle.pressed": {
|
|
797
|
+
"attributes": {
|
|
798
|
+
"group": "paint",
|
|
799
|
+
"state": "active",
|
|
800
|
+
"introduced": "1.19.0",
|
|
801
|
+
"description": "Pressed state of color.background.accent.lime.subtle."
|
|
802
|
+
},
|
|
803
|
+
"value": "#D3F1A7"
|
|
804
|
+
},
|
|
751
805
|
"Legacy light/color.background.accent.lime.bolder": {
|
|
752
806
|
"attributes": {
|
|
753
807
|
"group": "paint",
|
|
@@ -757,6 +811,24 @@
|
|
|
757
811
|
},
|
|
758
812
|
"value": "#5B7F24"
|
|
759
813
|
},
|
|
814
|
+
"Legacy light/color.background.accent.lime.bolder.hovered": {
|
|
815
|
+
"attributes": {
|
|
816
|
+
"group": "paint",
|
|
817
|
+
"state": "active",
|
|
818
|
+
"introduced": "1.19.0",
|
|
819
|
+
"description": "Hovered state of color.background.accent.lime.bolder."
|
|
820
|
+
},
|
|
821
|
+
"value": "#37471F"
|
|
822
|
+
},
|
|
823
|
+
"Legacy light/color.background.accent.lime.bolder.pressed": {
|
|
824
|
+
"attributes": {
|
|
825
|
+
"group": "paint",
|
|
826
|
+
"state": "active",
|
|
827
|
+
"introduced": "1.19.0",
|
|
828
|
+
"description": "Pressed state of color.background.accent.lime.bolder."
|
|
829
|
+
},
|
|
830
|
+
"value": "#37471F"
|
|
831
|
+
},
|
|
760
832
|
"Legacy light/color.background.accent.red.subtlest": {
|
|
761
833
|
"attributes": {
|
|
762
834
|
"group": "paint",
|
|
@@ -766,6 +838,24 @@
|
|
|
766
838
|
},
|
|
767
839
|
"value": "#FF8F73"
|
|
768
840
|
},
|
|
841
|
+
"Legacy light/color.background.accent.red.subtlest.hovered": {
|
|
842
|
+
"attributes": {
|
|
843
|
+
"group": "paint",
|
|
844
|
+
"state": "active",
|
|
845
|
+
"introduced": "1.19.0",
|
|
846
|
+
"description": "Hovered state of color.background.accent.red.subtlest."
|
|
847
|
+
},
|
|
848
|
+
"value": "#FF7452"
|
|
849
|
+
},
|
|
850
|
+
"Legacy light/color.background.accent.red.subtlest.pressed": {
|
|
851
|
+
"attributes": {
|
|
852
|
+
"group": "paint",
|
|
853
|
+
"state": "active",
|
|
854
|
+
"introduced": "1.19.0",
|
|
855
|
+
"description": "Pressed state of color.background.accent.red.subtlest."
|
|
856
|
+
},
|
|
857
|
+
"value": "#FF5630"
|
|
858
|
+
},
|
|
769
859
|
"Legacy light/color.background.accent.red.subtler": {
|
|
770
860
|
"attributes": {
|
|
771
861
|
"group": "paint",
|
|
@@ -775,6 +865,24 @@
|
|
|
775
865
|
},
|
|
776
866
|
"value": "#FF7452"
|
|
777
867
|
},
|
|
868
|
+
"Legacy light/color.background.accent.red.subtler.hovered": {
|
|
869
|
+
"attributes": {
|
|
870
|
+
"group": "paint",
|
|
871
|
+
"state": "active",
|
|
872
|
+
"introduced": "1.19.0",
|
|
873
|
+
"description": "Hovered state of color.background.accent.red.subtler."
|
|
874
|
+
},
|
|
875
|
+
"value": "#FF5630"
|
|
876
|
+
},
|
|
877
|
+
"Legacy light/color.background.accent.red.subtler.pressed": {
|
|
878
|
+
"attributes": {
|
|
879
|
+
"group": "paint",
|
|
880
|
+
"state": "active",
|
|
881
|
+
"introduced": "1.19.0",
|
|
882
|
+
"description": "Pressed state of color.background.accent.red.subtler."
|
|
883
|
+
},
|
|
884
|
+
"value": "#DE350B"
|
|
885
|
+
},
|
|
778
886
|
"Legacy light/color.background.accent.red.subtle": {
|
|
779
887
|
"attributes": {
|
|
780
888
|
"group": "paint",
|
|
@@ -784,6 +892,24 @@
|
|
|
784
892
|
},
|
|
785
893
|
"value": "#DE350B"
|
|
786
894
|
},
|
|
895
|
+
"Legacy light/color.background.accent.red.subtle.hovered": {
|
|
896
|
+
"attributes": {
|
|
897
|
+
"group": "paint",
|
|
898
|
+
"state": "active",
|
|
899
|
+
"introduced": "1.19.0",
|
|
900
|
+
"description": "Hovered state of color.background.accent.red.subtle."
|
|
901
|
+
},
|
|
902
|
+
"value": "#FF5630"
|
|
903
|
+
},
|
|
904
|
+
"Legacy light/color.background.accent.red.subtle.pressed": {
|
|
905
|
+
"attributes": {
|
|
906
|
+
"group": "paint",
|
|
907
|
+
"state": "active",
|
|
908
|
+
"introduced": "1.19.0",
|
|
909
|
+
"description": "Pressed state of color.background.accent.red.subtle."
|
|
910
|
+
},
|
|
911
|
+
"value": "#FF7452"
|
|
912
|
+
},
|
|
787
913
|
"Legacy light/color.background.accent.red.bolder": {
|
|
788
914
|
"attributes": {
|
|
789
915
|
"group": "paint",
|
|
@@ -793,6 +919,24 @@
|
|
|
793
919
|
},
|
|
794
920
|
"value": "#DE350B"
|
|
795
921
|
},
|
|
922
|
+
"Legacy light/color.background.accent.red.bolder.hovered": {
|
|
923
|
+
"attributes": {
|
|
924
|
+
"group": "paint",
|
|
925
|
+
"state": "active",
|
|
926
|
+
"introduced": "1.19.0",
|
|
927
|
+
"description": "Hovered state of color.background.accent.red.bolder."
|
|
928
|
+
},
|
|
929
|
+
"value": "#FF5630"
|
|
930
|
+
},
|
|
931
|
+
"Legacy light/color.background.accent.red.bolder.pressed": {
|
|
932
|
+
"attributes": {
|
|
933
|
+
"group": "paint",
|
|
934
|
+
"state": "active",
|
|
935
|
+
"introduced": "1.19.0",
|
|
936
|
+
"description": "Pressed state of color.background.accent.red.bolder."
|
|
937
|
+
},
|
|
938
|
+
"value": "#FF7452"
|
|
939
|
+
},
|
|
796
940
|
"Legacy light/color.background.accent.orange.subtlest": {
|
|
797
941
|
"attributes": {
|
|
798
942
|
"group": "paint",
|
|
@@ -802,6 +946,24 @@
|
|
|
802
946
|
},
|
|
803
947
|
"value": "#F18D13"
|
|
804
948
|
},
|
|
949
|
+
"Legacy light/color.background.accent.orange.subtlest.hovered": {
|
|
950
|
+
"attributes": {
|
|
951
|
+
"group": "paint",
|
|
952
|
+
"state": "active",
|
|
953
|
+
"introduced": "1.19.0",
|
|
954
|
+
"description": "Hovered state of color.background.accent.orange.subtlest."
|
|
955
|
+
},
|
|
956
|
+
"value": "#FEC57B"
|
|
957
|
+
},
|
|
958
|
+
"Legacy light/color.background.accent.orange.subtlest.pressed": {
|
|
959
|
+
"attributes": {
|
|
960
|
+
"group": "paint",
|
|
961
|
+
"state": "active",
|
|
962
|
+
"introduced": "1.19.0",
|
|
963
|
+
"description": "Pressed state of color.background.accent.orange.subtlest."
|
|
964
|
+
},
|
|
965
|
+
"value": "#FFE2BD"
|
|
966
|
+
},
|
|
805
967
|
"Legacy light/color.background.accent.orange.subtler": {
|
|
806
968
|
"attributes": {
|
|
807
969
|
"group": "paint",
|
|
@@ -811,6 +973,24 @@
|
|
|
811
973
|
},
|
|
812
974
|
"value": "#B65C02"
|
|
813
975
|
},
|
|
976
|
+
"Legacy light/color.background.accent.orange.subtler.hovered": {
|
|
977
|
+
"attributes": {
|
|
978
|
+
"group": "paint",
|
|
979
|
+
"state": "active",
|
|
980
|
+
"introduced": "1.19.0",
|
|
981
|
+
"description": "Hovered state of color.background.accent.orange.subtler."
|
|
982
|
+
},
|
|
983
|
+
"value": "#F18D13"
|
|
984
|
+
},
|
|
985
|
+
"Legacy light/color.background.accent.orange.subtler.pressed": {
|
|
986
|
+
"attributes": {
|
|
987
|
+
"group": "paint",
|
|
988
|
+
"state": "active",
|
|
989
|
+
"introduced": "1.19.0",
|
|
990
|
+
"description": "Pressed state of color.background.accent.orange.subtler."
|
|
991
|
+
},
|
|
992
|
+
"value": "#FEC57B"
|
|
993
|
+
},
|
|
814
994
|
"Legacy light/color.background.accent.orange.subtle": {
|
|
815
995
|
"attributes": {
|
|
816
996
|
"group": "paint",
|
|
@@ -820,6 +1000,24 @@
|
|
|
820
1000
|
},
|
|
821
1001
|
"value": "#5F3811"
|
|
822
1002
|
},
|
|
1003
|
+
"Legacy light/color.background.accent.orange.subtle.hovered": {
|
|
1004
|
+
"attributes": {
|
|
1005
|
+
"group": "paint",
|
|
1006
|
+
"state": "active",
|
|
1007
|
+
"introduced": "1.19.0",
|
|
1008
|
+
"description": "Hovered state of color.background.accent.orange.subtle."
|
|
1009
|
+
},
|
|
1010
|
+
"value": "#974F0C"
|
|
1011
|
+
},
|
|
1012
|
+
"Legacy light/color.background.accent.orange.subtle.pressed": {
|
|
1013
|
+
"attributes": {
|
|
1014
|
+
"group": "paint",
|
|
1015
|
+
"state": "active",
|
|
1016
|
+
"introduced": "1.19.0",
|
|
1017
|
+
"description": "Pressed state of color.background.accent.orange.subtle."
|
|
1018
|
+
},
|
|
1019
|
+
"value": "#B65C02"
|
|
1020
|
+
},
|
|
823
1021
|
"Legacy light/color.background.accent.orange.bolder": {
|
|
824
1022
|
"attributes": {
|
|
825
1023
|
"group": "paint",
|
|
@@ -829,6 +1027,24 @@
|
|
|
829
1027
|
},
|
|
830
1028
|
"value": "#43290F"
|
|
831
1029
|
},
|
|
1030
|
+
"Legacy light/color.background.accent.orange.bolder.hovered": {
|
|
1031
|
+
"attributes": {
|
|
1032
|
+
"group": "paint",
|
|
1033
|
+
"state": "active",
|
|
1034
|
+
"introduced": "1.19.0",
|
|
1035
|
+
"description": "Hovered state of color.background.accent.orange.bolder."
|
|
1036
|
+
},
|
|
1037
|
+
"value": "#5F3811"
|
|
1038
|
+
},
|
|
1039
|
+
"Legacy light/color.background.accent.orange.bolder.pressed": {
|
|
1040
|
+
"attributes": {
|
|
1041
|
+
"group": "paint",
|
|
1042
|
+
"state": "active",
|
|
1043
|
+
"introduced": "1.19.0",
|
|
1044
|
+
"description": "Pressed state of color.background.accent.orange.bolder."
|
|
1045
|
+
},
|
|
1046
|
+
"value": "#974F0C"
|
|
1047
|
+
},
|
|
832
1048
|
"Legacy light/color.background.accent.yellow.subtlest": {
|
|
833
1049
|
"attributes": {
|
|
834
1050
|
"group": "paint",
|
|
@@ -838,6 +1054,24 @@
|
|
|
838
1054
|
},
|
|
839
1055
|
"value": "#FFE380"
|
|
840
1056
|
},
|
|
1057
|
+
"Legacy light/color.background.accent.yellow.subtlest.hovered": {
|
|
1058
|
+
"attributes": {
|
|
1059
|
+
"group": "paint",
|
|
1060
|
+
"state": "active",
|
|
1061
|
+
"introduced": "1.19.0",
|
|
1062
|
+
"description": "Hovered state of color.background.accent.yellow.subtlest."
|
|
1063
|
+
},
|
|
1064
|
+
"value": "#FFC400"
|
|
1065
|
+
},
|
|
1066
|
+
"Legacy light/color.background.accent.yellow.subtlest.pressed": {
|
|
1067
|
+
"attributes": {
|
|
1068
|
+
"group": "paint",
|
|
1069
|
+
"state": "active",
|
|
1070
|
+
"introduced": "1.19.0",
|
|
1071
|
+
"description": "Pressed state of color.background.accent.yellow.subtlest."
|
|
1072
|
+
},
|
|
1073
|
+
"value": "#FFAB00"
|
|
1074
|
+
},
|
|
841
1075
|
"Legacy light/color.background.accent.yellow.subtler": {
|
|
842
1076
|
"attributes": {
|
|
843
1077
|
"group": "paint",
|
|
@@ -847,6 +1081,24 @@
|
|
|
847
1081
|
},
|
|
848
1082
|
"value": "#FFC400"
|
|
849
1083
|
},
|
|
1084
|
+
"Legacy light/color.background.accent.yellow.subtler.hovered": {
|
|
1085
|
+
"attributes": {
|
|
1086
|
+
"group": "paint",
|
|
1087
|
+
"state": "active",
|
|
1088
|
+
"introduced": "1.19.0",
|
|
1089
|
+
"description": "Hovered state of color.background.accent.yellow.subtler."
|
|
1090
|
+
},
|
|
1091
|
+
"value": "#FFAB00"
|
|
1092
|
+
},
|
|
1093
|
+
"Legacy light/color.background.accent.yellow.subtler.pressed": {
|
|
1094
|
+
"attributes": {
|
|
1095
|
+
"group": "paint",
|
|
1096
|
+
"state": "active",
|
|
1097
|
+
"introduced": "1.19.0",
|
|
1098
|
+
"description": "Pressed state of color.background.accent.yellow.subtler."
|
|
1099
|
+
},
|
|
1100
|
+
"value": "#FF991F"
|
|
1101
|
+
},
|
|
850
1102
|
"Legacy light/color.background.accent.yellow.subtle": {
|
|
851
1103
|
"attributes": {
|
|
852
1104
|
"group": "paint",
|
|
@@ -856,6 +1108,24 @@
|
|
|
856
1108
|
},
|
|
857
1109
|
"value": "#FF991F"
|
|
858
1110
|
},
|
|
1111
|
+
"Legacy light/color.background.accent.yellow.subtle.hovered": {
|
|
1112
|
+
"attributes": {
|
|
1113
|
+
"group": "paint",
|
|
1114
|
+
"state": "active",
|
|
1115
|
+
"introduced": "1.19.0",
|
|
1116
|
+
"description": "Hovered state of color.background.accent.yellow.subtle."
|
|
1117
|
+
},
|
|
1118
|
+
"value": "#FFAB00"
|
|
1119
|
+
},
|
|
1120
|
+
"Legacy light/color.background.accent.yellow.subtle.pressed": {
|
|
1121
|
+
"attributes": {
|
|
1122
|
+
"group": "paint",
|
|
1123
|
+
"state": "active",
|
|
1124
|
+
"introduced": "1.19.0",
|
|
1125
|
+
"description": "Pressed state of color.background.accent.yellow.subtle."
|
|
1126
|
+
},
|
|
1127
|
+
"value": "#FFC400"
|
|
1128
|
+
},
|
|
859
1129
|
"Legacy light/color.background.accent.yellow.bolder": {
|
|
860
1130
|
"attributes": {
|
|
861
1131
|
"group": "paint",
|
|
@@ -865,6 +1135,24 @@
|
|
|
865
1135
|
},
|
|
866
1136
|
"value": "#FF991F"
|
|
867
1137
|
},
|
|
1138
|
+
"Legacy light/color.background.accent.yellow.bolder.hovered": {
|
|
1139
|
+
"attributes": {
|
|
1140
|
+
"group": "paint",
|
|
1141
|
+
"state": "active",
|
|
1142
|
+
"introduced": "1.19.0",
|
|
1143
|
+
"description": "Hovered state of color.background.accent.yellow.bolder."
|
|
1144
|
+
},
|
|
1145
|
+
"value": "#FFAB00"
|
|
1146
|
+
},
|
|
1147
|
+
"Legacy light/color.background.accent.yellow.bolder.pressed": {
|
|
1148
|
+
"attributes": {
|
|
1149
|
+
"group": "paint",
|
|
1150
|
+
"state": "active",
|
|
1151
|
+
"introduced": "1.19.0",
|
|
1152
|
+
"description": "Pressed state of color.background.accent.yellow.bolder."
|
|
1153
|
+
},
|
|
1154
|
+
"value": "#FFC400"
|
|
1155
|
+
},
|
|
868
1156
|
"Legacy light/color.background.accent.green.subtlest": {
|
|
869
1157
|
"attributes": {
|
|
870
1158
|
"group": "paint",
|
|
@@ -874,6 +1162,24 @@
|
|
|
874
1162
|
},
|
|
875
1163
|
"value": "#79F2C0"
|
|
876
1164
|
},
|
|
1165
|
+
"Legacy light/color.background.accent.green.subtlest.hovered": {
|
|
1166
|
+
"attributes": {
|
|
1167
|
+
"group": "paint",
|
|
1168
|
+
"state": "active",
|
|
1169
|
+
"introduced": "1.19.0",
|
|
1170
|
+
"description": "Hovered state of color.background.accent.green.subtlest."
|
|
1171
|
+
},
|
|
1172
|
+
"value": "#57D9A3"
|
|
1173
|
+
},
|
|
1174
|
+
"Legacy light/color.background.accent.green.subtlest.pressed": {
|
|
1175
|
+
"attributes": {
|
|
1176
|
+
"group": "paint",
|
|
1177
|
+
"state": "active",
|
|
1178
|
+
"introduced": "1.19.0",
|
|
1179
|
+
"description": "Pressed state of color.background.accent.green.subtlest."
|
|
1180
|
+
},
|
|
1181
|
+
"value": "#36B37E"
|
|
1182
|
+
},
|
|
877
1183
|
"Legacy light/color.background.accent.green.subtler": {
|
|
878
1184
|
"attributes": {
|
|
879
1185
|
"group": "paint",
|
|
@@ -883,6 +1189,24 @@
|
|
|
883
1189
|
},
|
|
884
1190
|
"value": "#57D9A3"
|
|
885
1191
|
},
|
|
1192
|
+
"Legacy light/color.background.accent.green.subtler.hovered": {
|
|
1193
|
+
"attributes": {
|
|
1194
|
+
"group": "paint",
|
|
1195
|
+
"state": "active",
|
|
1196
|
+
"introduced": "1.19.0",
|
|
1197
|
+
"description": "Hovered state of color.background.accent.green.subtler."
|
|
1198
|
+
},
|
|
1199
|
+
"value": "#36B37E"
|
|
1200
|
+
},
|
|
1201
|
+
"Legacy light/color.background.accent.green.subtler.pressed": {
|
|
1202
|
+
"attributes": {
|
|
1203
|
+
"group": "paint",
|
|
1204
|
+
"state": "active",
|
|
1205
|
+
"introduced": "1.19.0",
|
|
1206
|
+
"description": "Pressed state of color.background.accent.green.subtler."
|
|
1207
|
+
},
|
|
1208
|
+
"value": "#00875A"
|
|
1209
|
+
},
|
|
886
1210
|
"Legacy light/color.background.accent.green.subtle": {
|
|
887
1211
|
"attributes": {
|
|
888
1212
|
"group": "paint",
|
|
@@ -892,6 +1216,24 @@
|
|
|
892
1216
|
},
|
|
893
1217
|
"value": "#00875A"
|
|
894
1218
|
},
|
|
1219
|
+
"Legacy light/color.background.accent.green.subtle.hovered": {
|
|
1220
|
+
"attributes": {
|
|
1221
|
+
"group": "paint",
|
|
1222
|
+
"state": "active",
|
|
1223
|
+
"introduced": "1.19.0",
|
|
1224
|
+
"description": "Hovered state of color.background.accent.green.subtle."
|
|
1225
|
+
},
|
|
1226
|
+
"value": "#36B37E"
|
|
1227
|
+
},
|
|
1228
|
+
"Legacy light/color.background.accent.green.subtle.pressed": {
|
|
1229
|
+
"attributes": {
|
|
1230
|
+
"group": "paint",
|
|
1231
|
+
"state": "active",
|
|
1232
|
+
"introduced": "1.19.0",
|
|
1233
|
+
"description": "Pressed state of color.background.accent.green.subtle."
|
|
1234
|
+
},
|
|
1235
|
+
"value": "#57D9A3"
|
|
1236
|
+
},
|
|
895
1237
|
"Legacy light/color.background.accent.green.bolder": {
|
|
896
1238
|
"attributes": {
|
|
897
1239
|
"group": "paint",
|
|
@@ -901,6 +1243,24 @@
|
|
|
901
1243
|
},
|
|
902
1244
|
"value": "#00875A"
|
|
903
1245
|
},
|
|
1246
|
+
"Legacy light/color.background.accent.green.bolder.hovered": {
|
|
1247
|
+
"attributes": {
|
|
1248
|
+
"group": "paint",
|
|
1249
|
+
"state": "active",
|
|
1250
|
+
"introduced": "1.19.0",
|
|
1251
|
+
"description": "Hovered state of color.background.accent.green.bolder."
|
|
1252
|
+
},
|
|
1253
|
+
"value": "#36B37E"
|
|
1254
|
+
},
|
|
1255
|
+
"Legacy light/color.background.accent.green.bolder.pressed": {
|
|
1256
|
+
"attributes": {
|
|
1257
|
+
"group": "paint",
|
|
1258
|
+
"state": "active",
|
|
1259
|
+
"introduced": "1.19.0",
|
|
1260
|
+
"description": "Pressed state of color.background.accent.green.bolder."
|
|
1261
|
+
},
|
|
1262
|
+
"value": "#57D9A3"
|
|
1263
|
+
},
|
|
904
1264
|
"Legacy light/color.background.accent.teal.subtlest": {
|
|
905
1265
|
"attributes": {
|
|
906
1266
|
"group": "paint",
|
|
@@ -910,6 +1270,24 @@
|
|
|
910
1270
|
},
|
|
911
1271
|
"value": "#79E2F2"
|
|
912
1272
|
},
|
|
1273
|
+
"Legacy light/color.background.accent.teal.subtlest.hovered": {
|
|
1274
|
+
"attributes": {
|
|
1275
|
+
"group": "paint",
|
|
1276
|
+
"state": "active",
|
|
1277
|
+
"introduced": "1.19.0",
|
|
1278
|
+
"description": "Hovered state of color.background.accent.teal.subtlest."
|
|
1279
|
+
},
|
|
1280
|
+
"value": "#00C7E6"
|
|
1281
|
+
},
|
|
1282
|
+
"Legacy light/color.background.accent.teal.subtlest.pressed": {
|
|
1283
|
+
"attributes": {
|
|
1284
|
+
"group": "paint",
|
|
1285
|
+
"state": "active",
|
|
1286
|
+
"introduced": "1.19.0",
|
|
1287
|
+
"description": "Pressed state of color.background.accent.teal.subtlest."
|
|
1288
|
+
},
|
|
1289
|
+
"value": "#00B8D9"
|
|
1290
|
+
},
|
|
913
1291
|
"Legacy light/color.background.accent.teal.subtler": {
|
|
914
1292
|
"attributes": {
|
|
915
1293
|
"group": "paint",
|
|
@@ -919,6 +1297,24 @@
|
|
|
919
1297
|
},
|
|
920
1298
|
"value": "#00C7E6"
|
|
921
1299
|
},
|
|
1300
|
+
"Legacy light/color.background.accent.teal.subtler.hovered": {
|
|
1301
|
+
"attributes": {
|
|
1302
|
+
"group": "paint",
|
|
1303
|
+
"state": "active",
|
|
1304
|
+
"introduced": "1.19.0",
|
|
1305
|
+
"description": "Hovered state of color.background.accent.teal.subtler."
|
|
1306
|
+
},
|
|
1307
|
+
"value": "#00B8D9"
|
|
1308
|
+
},
|
|
1309
|
+
"Legacy light/color.background.accent.teal.subtler.pressed": {
|
|
1310
|
+
"attributes": {
|
|
1311
|
+
"group": "paint",
|
|
1312
|
+
"state": "active",
|
|
1313
|
+
"introduced": "1.19.0",
|
|
1314
|
+
"description": "Pressed state of color.background.accent.teal.subtler."
|
|
1315
|
+
},
|
|
1316
|
+
"value": "#00A3BF"
|
|
1317
|
+
},
|
|
922
1318
|
"Legacy light/color.background.accent.teal.subtle": {
|
|
923
1319
|
"attributes": {
|
|
924
1320
|
"group": "paint",
|
|
@@ -928,6 +1324,24 @@
|
|
|
928
1324
|
},
|
|
929
1325
|
"value": "#00A3BF"
|
|
930
1326
|
},
|
|
1327
|
+
"Legacy light/color.background.accent.teal.subtle.hovered": {
|
|
1328
|
+
"attributes": {
|
|
1329
|
+
"group": "paint",
|
|
1330
|
+
"state": "active",
|
|
1331
|
+
"introduced": "1.19.0",
|
|
1332
|
+
"description": "Hovered state of color.background.accent.teal.subtle."
|
|
1333
|
+
},
|
|
1334
|
+
"value": "#00B8D9"
|
|
1335
|
+
},
|
|
1336
|
+
"Legacy light/color.background.accent.teal.subtle.pressed": {
|
|
1337
|
+
"attributes": {
|
|
1338
|
+
"group": "paint",
|
|
1339
|
+
"state": "active",
|
|
1340
|
+
"introduced": "1.19.0",
|
|
1341
|
+
"description": "Pressed state of color.background.accent.teal.subtle."
|
|
1342
|
+
},
|
|
1343
|
+
"value": "#00C7E6"
|
|
1344
|
+
},
|
|
931
1345
|
"Legacy light/color.background.accent.teal.bolder": {
|
|
932
1346
|
"attributes": {
|
|
933
1347
|
"group": "paint",
|
|
@@ -937,6 +1351,24 @@
|
|
|
937
1351
|
},
|
|
938
1352
|
"value": "#00A3BF"
|
|
939
1353
|
},
|
|
1354
|
+
"Legacy light/color.background.accent.teal.bolder.hovered": {
|
|
1355
|
+
"attributes": {
|
|
1356
|
+
"group": "paint",
|
|
1357
|
+
"state": "active",
|
|
1358
|
+
"introduced": "1.19.0",
|
|
1359
|
+
"description": "Hovered state of color.background.accent.teal.bolder."
|
|
1360
|
+
},
|
|
1361
|
+
"value": "#00B8D9"
|
|
1362
|
+
},
|
|
1363
|
+
"Legacy light/color.background.accent.teal.bolder.pressed": {
|
|
1364
|
+
"attributes": {
|
|
1365
|
+
"group": "paint",
|
|
1366
|
+
"state": "active",
|
|
1367
|
+
"introduced": "1.19.0",
|
|
1368
|
+
"description": "Pressed state of color.background.accent.teal.bolder."
|
|
1369
|
+
},
|
|
1370
|
+
"value": "#00C7E6"
|
|
1371
|
+
},
|
|
940
1372
|
"Legacy light/color.background.accent.blue.subtlest": {
|
|
941
1373
|
"attributes": {
|
|
942
1374
|
"group": "paint",
|
|
@@ -946,6 +1378,24 @@
|
|
|
946
1378
|
},
|
|
947
1379
|
"value": "#4C9AFF"
|
|
948
1380
|
},
|
|
1381
|
+
"Legacy light/color.background.accent.blue.subtlest.hovered": {
|
|
1382
|
+
"attributes": {
|
|
1383
|
+
"group": "paint",
|
|
1384
|
+
"state": "active",
|
|
1385
|
+
"introduced": "1.19.0",
|
|
1386
|
+
"description": "Hovered state of color.background.accent.blue.subtlest."
|
|
1387
|
+
},
|
|
1388
|
+
"value": "#2684FF"
|
|
1389
|
+
},
|
|
1390
|
+
"Legacy light/color.background.accent.blue.subtlest.pressed": {
|
|
1391
|
+
"attributes": {
|
|
1392
|
+
"group": "paint",
|
|
1393
|
+
"state": "active",
|
|
1394
|
+
"introduced": "1.19.0",
|
|
1395
|
+
"description": "Pressed state of color.background.accent.blue.subtlest."
|
|
1396
|
+
},
|
|
1397
|
+
"value": "#0065FF"
|
|
1398
|
+
},
|
|
949
1399
|
"Legacy light/color.background.accent.blue.subtler": {
|
|
950
1400
|
"attributes": {
|
|
951
1401
|
"group": "paint",
|
|
@@ -955,6 +1405,24 @@
|
|
|
955
1405
|
},
|
|
956
1406
|
"value": "#2684FF"
|
|
957
1407
|
},
|
|
1408
|
+
"Legacy light/color.background.accent.blue.subtler.hovered": {
|
|
1409
|
+
"attributes": {
|
|
1410
|
+
"group": "paint",
|
|
1411
|
+
"state": "active",
|
|
1412
|
+
"introduced": "1.19.0",
|
|
1413
|
+
"description": "Hovered state of color.background.accent.blue.subtler."
|
|
1414
|
+
},
|
|
1415
|
+
"value": "#0065FF"
|
|
1416
|
+
},
|
|
1417
|
+
"Legacy light/color.background.accent.blue.subtler.pressed": {
|
|
1418
|
+
"attributes": {
|
|
1419
|
+
"group": "paint",
|
|
1420
|
+
"state": "active",
|
|
1421
|
+
"introduced": "1.19.0",
|
|
1422
|
+
"description": "Pressed state of color.background.accent.blue.subtler."
|
|
1423
|
+
},
|
|
1424
|
+
"value": "#0052CC"
|
|
1425
|
+
},
|
|
958
1426
|
"Legacy light/color.background.accent.blue.subtle": {
|
|
959
1427
|
"attributes": {
|
|
960
1428
|
"group": "paint",
|
|
@@ -964,6 +1432,24 @@
|
|
|
964
1432
|
},
|
|
965
1433
|
"value": "#0052CC"
|
|
966
1434
|
},
|
|
1435
|
+
"Legacy light/color.background.accent.blue.subtle.hovered": {
|
|
1436
|
+
"attributes": {
|
|
1437
|
+
"group": "paint",
|
|
1438
|
+
"state": "active",
|
|
1439
|
+
"introduced": "1.19.0",
|
|
1440
|
+
"description": "Hovered state of color.background.accent.blue.subtle."
|
|
1441
|
+
},
|
|
1442
|
+
"value": "#0065FF"
|
|
1443
|
+
},
|
|
1444
|
+
"Legacy light/color.background.accent.blue.subtle.pressed": {
|
|
1445
|
+
"attributes": {
|
|
1446
|
+
"group": "paint",
|
|
1447
|
+
"state": "active",
|
|
1448
|
+
"introduced": "1.19.0",
|
|
1449
|
+
"description": "Pressed state of color.background.accent.blue.subtle."
|
|
1450
|
+
},
|
|
1451
|
+
"value": "#2684FF"
|
|
1452
|
+
},
|
|
967
1453
|
"Legacy light/color.background.accent.blue.bolder": {
|
|
968
1454
|
"attributes": {
|
|
969
1455
|
"group": "paint",
|
|
@@ -973,6 +1459,24 @@
|
|
|
973
1459
|
},
|
|
974
1460
|
"value": "#0052CC"
|
|
975
1461
|
},
|
|
1462
|
+
"Legacy light/color.background.accent.blue.bolder.hovered": {
|
|
1463
|
+
"attributes": {
|
|
1464
|
+
"group": "paint",
|
|
1465
|
+
"state": "active",
|
|
1466
|
+
"introduced": "1.19.0",
|
|
1467
|
+
"description": "Hovered state of color.background.accent.blue.bolder."
|
|
1468
|
+
},
|
|
1469
|
+
"value": "#0065FF"
|
|
1470
|
+
},
|
|
1471
|
+
"Legacy light/color.background.accent.blue.bolder.pressed": {
|
|
1472
|
+
"attributes": {
|
|
1473
|
+
"group": "paint",
|
|
1474
|
+
"state": "active",
|
|
1475
|
+
"introduced": "1.19.0",
|
|
1476
|
+
"description": "Pressed state of color.background.accent.blue.bolder."
|
|
1477
|
+
},
|
|
1478
|
+
"value": "#2684FF"
|
|
1479
|
+
},
|
|
976
1480
|
"Legacy light/color.background.accent.purple.subtlest": {
|
|
977
1481
|
"attributes": {
|
|
978
1482
|
"group": "paint",
|
|
@@ -982,6 +1486,24 @@
|
|
|
982
1486
|
},
|
|
983
1487
|
"value": "#998DD9"
|
|
984
1488
|
},
|
|
1489
|
+
"Legacy light/color.background.accent.purple.subtlest.hovered": {
|
|
1490
|
+
"attributes": {
|
|
1491
|
+
"group": "paint",
|
|
1492
|
+
"state": "active",
|
|
1493
|
+
"introduced": "1.19.0",
|
|
1494
|
+
"description": "Hovered state of color.background.accent.purple.subtlest."
|
|
1495
|
+
},
|
|
1496
|
+
"value": "#8777D9"
|
|
1497
|
+
},
|
|
1498
|
+
"Legacy light/color.background.accent.purple.subtlest.pressed": {
|
|
1499
|
+
"attributes": {
|
|
1500
|
+
"group": "paint",
|
|
1501
|
+
"state": "active",
|
|
1502
|
+
"introduced": "1.19.0",
|
|
1503
|
+
"description": "Pressed state of color.background.accent.purple.subtlest."
|
|
1504
|
+
},
|
|
1505
|
+
"value": "#6554C0"
|
|
1506
|
+
},
|
|
985
1507
|
"Legacy light/color.background.accent.purple.subtler": {
|
|
986
1508
|
"attributes": {
|
|
987
1509
|
"group": "paint",
|
|
@@ -991,6 +1513,24 @@
|
|
|
991
1513
|
},
|
|
992
1514
|
"value": "#8777D9"
|
|
993
1515
|
},
|
|
1516
|
+
"Legacy light/color.background.accent.purple.subtler.hovered": {
|
|
1517
|
+
"attributes": {
|
|
1518
|
+
"group": "paint",
|
|
1519
|
+
"state": "active",
|
|
1520
|
+
"introduced": "1.19.0",
|
|
1521
|
+
"description": "Hovered state of color.background.accent.purple.subtler."
|
|
1522
|
+
},
|
|
1523
|
+
"value": "#6554C0"
|
|
1524
|
+
},
|
|
1525
|
+
"Legacy light/color.background.accent.purple.subtler.pressed": {
|
|
1526
|
+
"attributes": {
|
|
1527
|
+
"group": "paint",
|
|
1528
|
+
"state": "active",
|
|
1529
|
+
"introduced": "1.19.0",
|
|
1530
|
+
"description": "Pressed state of color.background.accent.purple.subtler."
|
|
1531
|
+
},
|
|
1532
|
+
"value": "#5243AA"
|
|
1533
|
+
},
|
|
994
1534
|
"Legacy light/color.background.accent.purple.subtle": {
|
|
995
1535
|
"attributes": {
|
|
996
1536
|
"group": "paint",
|
|
@@ -1000,6 +1540,24 @@
|
|
|
1000
1540
|
},
|
|
1001
1541
|
"value": "#5243AA"
|
|
1002
1542
|
},
|
|
1543
|
+
"Legacy light/color.background.accent.purple.subtle.hovered": {
|
|
1544
|
+
"attributes": {
|
|
1545
|
+
"group": "paint",
|
|
1546
|
+
"state": "active",
|
|
1547
|
+
"introduced": "1.19.0",
|
|
1548
|
+
"description": "Hovered state of color.background.accent.purple.subtle."
|
|
1549
|
+
},
|
|
1550
|
+
"value": "#6554C0"
|
|
1551
|
+
},
|
|
1552
|
+
"Legacy light/color.background.accent.purple.subtle.pressed": {
|
|
1553
|
+
"attributes": {
|
|
1554
|
+
"group": "paint",
|
|
1555
|
+
"state": "active",
|
|
1556
|
+
"introduced": "1.19.0",
|
|
1557
|
+
"description": "Pressed state of color.background.accent.purple.subtle."
|
|
1558
|
+
},
|
|
1559
|
+
"value": "#8777D9"
|
|
1560
|
+
},
|
|
1003
1561
|
"Legacy light/color.background.accent.purple.bolder": {
|
|
1004
1562
|
"attributes": {
|
|
1005
1563
|
"group": "paint",
|
|
@@ -1009,6 +1567,24 @@
|
|
|
1009
1567
|
},
|
|
1010
1568
|
"value": "#5243AA"
|
|
1011
1569
|
},
|
|
1570
|
+
"Legacy light/color.background.accent.purple.bolder.hovered": {
|
|
1571
|
+
"attributes": {
|
|
1572
|
+
"group": "paint",
|
|
1573
|
+
"state": "active",
|
|
1574
|
+
"introduced": "1.19.0",
|
|
1575
|
+
"description": "Hovered state of color.background.accent.purple.bolder."
|
|
1576
|
+
},
|
|
1577
|
+
"value": "#6554C0"
|
|
1578
|
+
},
|
|
1579
|
+
"Legacy light/color.background.accent.purple.bolder.pressed": {
|
|
1580
|
+
"attributes": {
|
|
1581
|
+
"group": "paint",
|
|
1582
|
+
"state": "active",
|
|
1583
|
+
"introduced": "1.19.0",
|
|
1584
|
+
"description": "Pressed state of color.background.accent.purple.bolder."
|
|
1585
|
+
},
|
|
1586
|
+
"value": "#8777D9"
|
|
1587
|
+
},
|
|
1012
1588
|
"Legacy light/color.background.accent.magenta.subtlest": {
|
|
1013
1589
|
"attributes": {
|
|
1014
1590
|
"group": "paint",
|
|
@@ -1016,7 +1592,25 @@
|
|
|
1016
1592
|
"introduced": "0.7.0",
|
|
1017
1593
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1018
1594
|
},
|
|
1019
|
-
"value": "#
|
|
1595
|
+
"value": "#FFECF8"
|
|
1596
|
+
},
|
|
1597
|
+
"Legacy light/color.background.accent.magenta.subtlest.hovered": {
|
|
1598
|
+
"attributes": {
|
|
1599
|
+
"group": "paint",
|
|
1600
|
+
"state": "active",
|
|
1601
|
+
"introduced": "1.19.0",
|
|
1602
|
+
"description": "Hovered state of color.background.accent.magenta.subtlest."
|
|
1603
|
+
},
|
|
1604
|
+
"value": "#FDD0EC"
|
|
1605
|
+
},
|
|
1606
|
+
"Legacy light/color.background.accent.magenta.subtlest.pressed": {
|
|
1607
|
+
"attributes": {
|
|
1608
|
+
"group": "paint",
|
|
1609
|
+
"state": "active",
|
|
1610
|
+
"introduced": "1.19.0",
|
|
1611
|
+
"description": "Pressed state of color.background.accent.magenta.subtlest."
|
|
1612
|
+
},
|
|
1613
|
+
"value": "#F797D2"
|
|
1020
1614
|
},
|
|
1021
1615
|
"Legacy light/color.background.accent.magenta.subtler": {
|
|
1022
1616
|
"attributes": {
|
|
@@ -1025,6 +1619,24 @@
|
|
|
1025
1619
|
"introduced": "0.7.0",
|
|
1026
1620
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1027
1621
|
},
|
|
1622
|
+
"value": "#FDD0EC"
|
|
1623
|
+
},
|
|
1624
|
+
"Legacy light/color.background.accent.magenta.subtler.hovered": {
|
|
1625
|
+
"attributes": {
|
|
1626
|
+
"group": "paint",
|
|
1627
|
+
"state": "active",
|
|
1628
|
+
"introduced": "1.19.0",
|
|
1629
|
+
"description": "Hovered state of color.background.accent.magenta.subtler."
|
|
1630
|
+
},
|
|
1631
|
+
"value": "#F797D2"
|
|
1632
|
+
},
|
|
1633
|
+
"Legacy light/color.background.accent.magenta.subtler.pressed": {
|
|
1634
|
+
"attributes": {
|
|
1635
|
+
"group": "paint",
|
|
1636
|
+
"state": "active",
|
|
1637
|
+
"introduced": "1.19.0",
|
|
1638
|
+
"description": "Pressed state of color.background.accent.magenta.subtler."
|
|
1639
|
+
},
|
|
1028
1640
|
"value": "#E774BB"
|
|
1029
1641
|
},
|
|
1030
1642
|
"Legacy light/color.background.accent.magenta.subtle": {
|
|
@@ -1036,6 +1648,24 @@
|
|
|
1036
1648
|
},
|
|
1037
1649
|
"value": "#E774BB"
|
|
1038
1650
|
},
|
|
1651
|
+
"Legacy light/color.background.accent.magenta.subtle.hovered": {
|
|
1652
|
+
"attributes": {
|
|
1653
|
+
"group": "paint",
|
|
1654
|
+
"state": "active",
|
|
1655
|
+
"introduced": "1.19.0",
|
|
1656
|
+
"description": "Hovered state of color.background.accent.magenta.subtle."
|
|
1657
|
+
},
|
|
1658
|
+
"value": "#F797D2"
|
|
1659
|
+
},
|
|
1660
|
+
"Legacy light/color.background.accent.magenta.subtle.pressed": {
|
|
1661
|
+
"attributes": {
|
|
1662
|
+
"group": "paint",
|
|
1663
|
+
"state": "active",
|
|
1664
|
+
"introduced": "1.19.0",
|
|
1665
|
+
"description": "Pressed state of color.background.accent.magenta.subtle."
|
|
1666
|
+
},
|
|
1667
|
+
"value": "#FDD0EC"
|
|
1668
|
+
},
|
|
1039
1669
|
"Legacy light/color.background.accent.magenta.bolder": {
|
|
1040
1670
|
"attributes": {
|
|
1041
1671
|
"group": "paint",
|
|
@@ -1043,7 +1673,25 @@
|
|
|
1043
1673
|
"introduced": "0.7.0",
|
|
1044
1674
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
1045
1675
|
},
|
|
1046
|
-
"value": "#
|
|
1676
|
+
"value": "#AE4787"
|
|
1677
|
+
},
|
|
1678
|
+
"Legacy light/color.background.accent.magenta.bolder.hovered": {
|
|
1679
|
+
"attributes": {
|
|
1680
|
+
"group": "paint",
|
|
1681
|
+
"state": "active",
|
|
1682
|
+
"introduced": "1.19.0",
|
|
1683
|
+
"description": "Hovered state of color.background.accent.magenta.bolder."
|
|
1684
|
+
},
|
|
1685
|
+
"value": "#943D73"
|
|
1686
|
+
},
|
|
1687
|
+
"Legacy light/color.background.accent.magenta.bolder.pressed": {
|
|
1688
|
+
"attributes": {
|
|
1689
|
+
"group": "paint",
|
|
1690
|
+
"state": "active",
|
|
1691
|
+
"introduced": "1.19.0",
|
|
1692
|
+
"description": "Pressed state of color.background.accent.magenta.bolder."
|
|
1693
|
+
},
|
|
1694
|
+
"value": "#50253F"
|
|
1047
1695
|
},
|
|
1048
1696
|
"Legacy light/color.background.accent.gray.subtlest": {
|
|
1049
1697
|
"attributes": {
|
|
@@ -1054,6 +1702,24 @@
|
|
|
1054
1702
|
},
|
|
1055
1703
|
"value": "#6B778C"
|
|
1056
1704
|
},
|
|
1705
|
+
"Legacy light/color.background.accent.gray.subtlest.hovered": {
|
|
1706
|
+
"attributes": {
|
|
1707
|
+
"group": "paint",
|
|
1708
|
+
"state": "active",
|
|
1709
|
+
"introduced": "1.19.0",
|
|
1710
|
+
"description": "Hovered state of color.background.accent.gray.subtlest."
|
|
1711
|
+
},
|
|
1712
|
+
"value": "#5E6C84"
|
|
1713
|
+
},
|
|
1714
|
+
"Legacy light/color.background.accent.gray.subtlest.pressed": {
|
|
1715
|
+
"attributes": {
|
|
1716
|
+
"group": "paint",
|
|
1717
|
+
"state": "active",
|
|
1718
|
+
"introduced": "1.19.0",
|
|
1719
|
+
"description": "Pressed state of color.background.accent.gray.subtlest."
|
|
1720
|
+
},
|
|
1721
|
+
"value": "#505F79"
|
|
1722
|
+
},
|
|
1057
1723
|
"Legacy light/color.background.accent.gray.subtler": {
|
|
1058
1724
|
"attributes": {
|
|
1059
1725
|
"group": "paint",
|
|
@@ -1063,6 +1729,24 @@
|
|
|
1063
1729
|
},
|
|
1064
1730
|
"value": "#5E6C84"
|
|
1065
1731
|
},
|
|
1732
|
+
"Legacy light/color.background.accent.gray.subtler.hovered": {
|
|
1733
|
+
"attributes": {
|
|
1734
|
+
"group": "paint",
|
|
1735
|
+
"state": "active",
|
|
1736
|
+
"introduced": "1.19.0",
|
|
1737
|
+
"description": "Hovered state of color.background.accent.gray.subtler."
|
|
1738
|
+
},
|
|
1739
|
+
"value": "#505F79"
|
|
1740
|
+
},
|
|
1741
|
+
"Legacy light/color.background.accent.gray.subtler.pressed": {
|
|
1742
|
+
"attributes": {
|
|
1743
|
+
"group": "paint",
|
|
1744
|
+
"state": "active",
|
|
1745
|
+
"introduced": "1.19.0",
|
|
1746
|
+
"description": "Pressed state of color.background.accent.gray.subtler."
|
|
1747
|
+
},
|
|
1748
|
+
"value": "#42526E"
|
|
1749
|
+
},
|
|
1066
1750
|
"Legacy light/color.background.accent.gray.subtle": {
|
|
1067
1751
|
"attributes": {
|
|
1068
1752
|
"group": "paint",
|
|
@@ -1070,7 +1754,25 @@
|
|
|
1070
1754
|
"introduced": "0.7.0",
|
|
1071
1755
|
"description": "Use for vibrant gray backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1072
1756
|
},
|
|
1073
|
-
"value": "#
|
|
1757
|
+
"value": "#505F79"
|
|
1758
|
+
},
|
|
1759
|
+
"Legacy light/color.background.accent.gray.subtle.hovered": {
|
|
1760
|
+
"attributes": {
|
|
1761
|
+
"group": "paint",
|
|
1762
|
+
"state": "active",
|
|
1763
|
+
"introduced": "1.19.0",
|
|
1764
|
+
"description": "Hovered state of color.background.accent.gray.subtle."
|
|
1765
|
+
},
|
|
1766
|
+
"value": "#5E6C84"
|
|
1767
|
+
},
|
|
1768
|
+
"Legacy light/color.background.accent.gray.subtle.pressed": {
|
|
1769
|
+
"attributes": {
|
|
1770
|
+
"group": "paint",
|
|
1771
|
+
"state": "active",
|
|
1772
|
+
"introduced": "1.19.0",
|
|
1773
|
+
"description": "Pressed state of color.background.accent.gray.subtle."
|
|
1774
|
+
},
|
|
1775
|
+
"value": "#6B778C"
|
|
1074
1776
|
},
|
|
1075
1777
|
"Legacy light/color.background.accent.gray.bolder": {
|
|
1076
1778
|
"attributes": {
|
|
@@ -1079,7 +1781,25 @@
|
|
|
1079
1781
|
"introduced": "0.7.0",
|
|
1080
1782
|
"description": "Use for gray backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
1081
1783
|
},
|
|
1082
|
-
"value": "#
|
|
1784
|
+
"value": "#42526E"
|
|
1785
|
+
},
|
|
1786
|
+
"Legacy light/color.background.accent.gray.bolder.hovered": {
|
|
1787
|
+
"attributes": {
|
|
1788
|
+
"group": "paint",
|
|
1789
|
+
"state": "active",
|
|
1790
|
+
"introduced": "1.19.0",
|
|
1791
|
+
"description": "Hovered state of color.background.accent.gray.bolder."
|
|
1792
|
+
},
|
|
1793
|
+
"value": "#344563"
|
|
1794
|
+
},
|
|
1795
|
+
"Legacy light/color.background.accent.gray.bolder.pressed": {
|
|
1796
|
+
"attributes": {
|
|
1797
|
+
"group": "paint",
|
|
1798
|
+
"state": "active",
|
|
1799
|
+
"introduced": "1.19.0",
|
|
1800
|
+
"description": "Pressed state of color.background.accent.gray.subtlest."
|
|
1801
|
+
},
|
|
1802
|
+
"value": "#253858"
|
|
1083
1803
|
},
|
|
1084
1804
|
"Legacy light/color.background.disabled": {
|
|
1085
1805
|
"attributes": {
|