@atlaskit/tokens 0.13.2 → 0.13.3

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.
Files changed (102) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/css/atlassian-dark.css +189 -1
  3. package/css/atlassian-legacy-dark.css +189 -1
  4. package/css/atlassian-legacy-light.css +189 -1
  5. package/css/atlassian-light.css +199 -11
  6. package/dist/cjs/artifacts/palettes-raw/palette.js +5 -5
  7. package/dist/cjs/artifacts/token-default-values.js +100 -6
  8. package/dist/cjs/artifacts/token-names.js +95 -1
  9. package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +1975 -1
  10. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +1975 -1
  11. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +1975 -1
  12. package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +1981 -7
  13. package/dist/cjs/artifacts/typescript/atlassian-dark-token-names.js +403 -0
  14. package/dist/cjs/artifacts/typescript/atlassian-dark-types-internal.js +5 -0
  15. package/dist/cjs/artifacts/typescript/atlassian-dark-types.js +5 -0
  16. package/dist/cjs/artifacts/typescript/atlassian-light-token-default-values.js +100 -6
  17. package/dist/cjs/artifacts/typescript/atlassian-light-token-names.js +403 -0
  18. package/dist/cjs/artifacts/typescript/atlassian-light-types-internal.js +5 -0
  19. package/dist/cjs/artifacts/typescript/atlassian-light-types.js +5 -0
  20. package/dist/cjs/get-token-value.js +1 -1
  21. package/dist/cjs/get-token.js +1 -1
  22. package/dist/cjs/palettes/palette.js +3 -3
  23. package/dist/cjs/tokens/atlassian-dark/color/chart.js +420 -0
  24. package/dist/cjs/tokens/atlassian-legacy-dark/color/chart.js +440 -0
  25. package/dist/cjs/tokens/atlassian-legacy-light/color/chart.js +440 -0
  26. package/dist/cjs/tokens/atlassian-light/color/accent.js +1 -1
  27. package/dist/cjs/tokens/atlassian-light/color/chart.js +420 -0
  28. package/dist/cjs/tokens/default/color/chart.js +890 -0
  29. package/dist/cjs/version.json +1 -1
  30. package/dist/es2019/artifacts/palettes-raw/palette.js +5 -5
  31. package/dist/es2019/artifacts/token-default-values.js +100 -6
  32. package/dist/es2019/artifacts/token-names.js +95 -1
  33. package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +1975 -1
  34. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +1975 -1
  35. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +1975 -1
  36. package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +1981 -7
  37. package/dist/es2019/artifacts/typescript/atlassian-dark-token-names.js +395 -0
  38. package/dist/es2019/artifacts/typescript/atlassian-dark-types-internal.js +1 -0
  39. package/dist/es2019/artifacts/typescript/atlassian-dark-types.js +1 -0
  40. package/dist/es2019/artifacts/typescript/atlassian-light-token-default-values.js +100 -6
  41. package/dist/es2019/artifacts/typescript/atlassian-light-token-names.js +395 -0
  42. package/dist/es2019/artifacts/typescript/atlassian-light-types-internal.js +1 -0
  43. package/dist/es2019/artifacts/typescript/atlassian-light-types.js +1 -0
  44. package/dist/es2019/get-token-value.js +1 -1
  45. package/dist/es2019/get-token.js +1 -1
  46. package/dist/es2019/palettes/palette.js +3 -3
  47. package/dist/es2019/tokens/atlassian-dark/color/chart.js +413 -0
  48. package/dist/es2019/tokens/atlassian-legacy-dark/color/chart.js +433 -0
  49. package/dist/es2019/tokens/atlassian-legacy-light/color/chart.js +433 -0
  50. package/dist/es2019/tokens/atlassian-light/color/accent.js +1 -1
  51. package/dist/es2019/tokens/atlassian-light/color/chart.js +413 -0
  52. package/dist/es2019/tokens/default/color/chart.js +883 -0
  53. package/dist/es2019/version.json +1 -1
  54. package/dist/esm/artifacts/palettes-raw/palette.js +5 -5
  55. package/dist/esm/artifacts/token-default-values.js +100 -6
  56. package/dist/esm/artifacts/token-names.js +95 -1
  57. package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +1975 -1
  58. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +1975 -1
  59. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +1975 -1
  60. package/dist/esm/artifacts/tokens-raw/atlassian-light.js +1981 -7
  61. package/dist/esm/artifacts/typescript/atlassian-dark-token-names.js +395 -0
  62. package/dist/esm/artifacts/typescript/atlassian-dark-types-internal.js +1 -0
  63. package/dist/esm/artifacts/typescript/atlassian-dark-types.js +1 -0
  64. package/dist/esm/artifacts/typescript/atlassian-light-token-default-values.js +100 -6
  65. package/dist/esm/artifacts/typescript/atlassian-light-token-names.js +395 -0
  66. package/dist/esm/artifacts/typescript/atlassian-light-types-internal.js +1 -0
  67. package/dist/esm/artifacts/typescript/atlassian-light-types.js +1 -0
  68. package/dist/esm/get-token-value.js +1 -1
  69. package/dist/esm/get-token.js +1 -1
  70. package/dist/esm/palettes/palette.js +3 -3
  71. package/dist/esm/tokens/atlassian-dark/color/chart.js +413 -0
  72. package/dist/esm/tokens/atlassian-legacy-dark/color/chart.js +433 -0
  73. package/dist/esm/tokens/atlassian-legacy-light/color/chart.js +433 -0
  74. package/dist/esm/tokens/atlassian-light/color/accent.js +1 -1
  75. package/dist/esm/tokens/atlassian-light/color/chart.js +413 -0
  76. package/dist/esm/tokens/default/color/chart.js +883 -0
  77. package/dist/esm/version.json +1 -1
  78. package/dist/types/artifacts/palettes-raw/palette.d.ts +1 -1
  79. package/dist/types/artifacts/token-default-values.d.ts +100 -6
  80. package/dist/types/artifacts/token-names.d.ts +189 -1
  81. package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
  82. package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
  83. package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
  84. package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
  85. package/dist/types/artifacts/types-internal.d.ts +2 -2
  86. package/dist/types/artifacts/types.d.ts +2 -2
  87. package/dist/types/artifacts/typescript/atlassian-dark-token-names.d.ts +784 -0
  88. package/dist/types/artifacts/typescript/atlassian-dark-types-internal.d.ts +6 -0
  89. package/dist/types/artifacts/typescript/atlassian-dark-types.d.ts +6 -0
  90. package/dist/types/artifacts/typescript/atlassian-light-token-default-values.d.ts +100 -6
  91. package/dist/types/artifacts/typescript/atlassian-light-token-names.d.ts +784 -0
  92. package/dist/types/artifacts/typescript/atlassian-light-types-internal.d.ts +6 -0
  93. package/dist/types/artifacts/typescript/atlassian-light-types.d.ts +6 -0
  94. package/dist/types/tokens/atlassian-dark/color/chart.d.ts +4 -0
  95. package/dist/types/tokens/atlassian-legacy-dark/color/chart.d.ts +4 -0
  96. package/dist/types/tokens/atlassian-legacy-light/color/chart.d.ts +4 -0
  97. package/dist/types/tokens/atlassian-light/color/chart.d.ts +4 -0
  98. package/dist/types/tokens/default/color/chart.d.ts +4 -0
  99. package/dist/types/types.d.ts +224 -0
  100. package/package.json +3 -1
  101. package/report.api.md +188 -0
  102. package/tmp/api-report-tmp.d.ts +188 -0
@@ -7,7 +7,7 @@ exports.default = void 0;
7
7
 
8
8
  /**
9
9
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
10
- * @codegen <<SignedSource::a7cd6dc0682b1cc4ab506edd14f15515>>
10
+ * @codegen <<SignedSource::1be80876c8fb914b577591e151159a05>>
11
11
  * @codegenCommand yarn build tokens
12
12
  */
13
13
  var tokens = [{
@@ -5590,6 +5590,1980 @@ var tokens = [{
5590
5590
  },
5591
5591
  "name": "color.blanket.danger",
5592
5592
  "path": ["color", "blanket", "danger"]
5593
+ }, {
5594
+ "attributes": {
5595
+ "group": "paint",
5596
+ "state": "active",
5597
+ "introduced": "0.13.2",
5598
+ "description": "Our primary color for data visualisation. Use when only one color is required."
5599
+ },
5600
+ "value": "#388BFF",
5601
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5602
+ "isSource": true,
5603
+ "original": {
5604
+ "attributes": {
5605
+ "group": "paint",
5606
+ "state": "active",
5607
+ "introduced": "0.13.2",
5608
+ "description": "Our primary color for data visualisation. Use when only one color is required."
5609
+ },
5610
+ "value": "Blue500"
5611
+ },
5612
+ "name": "color.chart.brand.[default]",
5613
+ "path": ["color", "chart", "brand", "[default]"]
5614
+ }, {
5615
+ "attributes": {
5616
+ "group": "paint",
5617
+ "state": "active",
5618
+ "introduced": "0.13.2",
5619
+ "description": "Hovered state of color.chart.brand."
5620
+ },
5621
+ "value": "#579DFF",
5622
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5623
+ "isSource": true,
5624
+ "original": {
5625
+ "attributes": {
5626
+ "group": "paint",
5627
+ "state": "active",
5628
+ "introduced": "0.13.2",
5629
+ "description": "Hovered state of color.chart.brand."
5630
+ },
5631
+ "value": "Blue400"
5632
+ },
5633
+ "name": "color.chart.brand.hovered",
5634
+ "path": ["color", "chart", "brand", "hovered"]
5635
+ }, {
5636
+ "attributes": {
5637
+ "group": "paint",
5638
+ "state": "active",
5639
+ "introduced": "0.13.2",
5640
+ "description": "A secondary color for data visualisation or to communicate 'to-do' statues."
5641
+ },
5642
+ "value": "#738496",
5643
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5644
+ "isSource": true,
5645
+ "original": {
5646
+ "attributes": {
5647
+ "group": "paint",
5648
+ "state": "active",
5649
+ "introduced": "0.13.2",
5650
+ "description": "A secondary color for data visualisation or to communicate 'to-do' statues."
5651
+ },
5652
+ "value": "DarkNeutral600"
5653
+ },
5654
+ "name": "color.chart.neutral.[default]",
5655
+ "path": ["color", "chart", "neutral", "[default]"]
5656
+ }, {
5657
+ "attributes": {
5658
+ "group": "paint",
5659
+ "state": "active",
5660
+ "introduced": "0.13.2",
5661
+ "description": "Hovered state of color.chart.neutral."
5662
+ },
5663
+ "value": "#8696A7",
5664
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5665
+ "isSource": true,
5666
+ "original": {
5667
+ "attributes": {
5668
+ "group": "paint",
5669
+ "state": "active",
5670
+ "introduced": "0.13.2",
5671
+ "description": "Hovered state of color.chart.neutral."
5672
+ },
5673
+ "value": "DarkNeutral700"
5674
+ },
5675
+ "name": "color.chart.neutral.hovered",
5676
+ "path": ["color", "chart", "neutral", "hovered"]
5677
+ }, {
5678
+ "attributes": {
5679
+ "group": "paint",
5680
+ "state": "active",
5681
+ "introduced": "0.13.2",
5682
+ "description": "For data visualisation communicating positive information, such as 'on track'."
5683
+ },
5684
+ "value": "#2ABB7F",
5685
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5686
+ "isSource": true,
5687
+ "original": {
5688
+ "attributes": {
5689
+ "group": "paint",
5690
+ "state": "active",
5691
+ "introduced": "0.13.2",
5692
+ "description": "For data visualisation communicating positive information, such as 'on track'."
5693
+ },
5694
+ "value": "Green500"
5695
+ },
5696
+ "name": "color.chart.success.[default].[default]",
5697
+ "path": ["color", "chart", "success", "[default]", "[default]"]
5698
+ }, {
5699
+ "attributes": {
5700
+ "group": "paint",
5701
+ "state": "active",
5702
+ "introduced": "0.13.2",
5703
+ "description": "Hovered state of color.chart.success."
5704
+ },
5705
+ "value": "#4BCE97",
5706
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5707
+ "isSource": true,
5708
+ "original": {
5709
+ "attributes": {
5710
+ "group": "paint",
5711
+ "state": "active",
5712
+ "introduced": "0.13.2",
5713
+ "description": "Hovered state of color.chart.success."
5714
+ },
5715
+ "value": "Green400"
5716
+ },
5717
+ "name": "color.chart.success.[default].hovered",
5718
+ "path": ["color", "chart", "success", "[default]", "hovered"]
5719
+ }, {
5720
+ "attributes": {
5721
+ "group": "paint",
5722
+ "state": "active",
5723
+ "introduced": "0.13.2",
5724
+ "description": "A stronger emphasis option of color.chart.success."
5725
+ },
5726
+ "value": "#7EE2B8",
5727
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5728
+ "isSource": true,
5729
+ "original": {
5730
+ "attributes": {
5731
+ "group": "paint",
5732
+ "state": "active",
5733
+ "introduced": "0.13.2",
5734
+ "description": "A stronger emphasis option of color.chart.success."
5735
+ },
5736
+ "value": "Green300"
5737
+ },
5738
+ "name": "color.chart.success.bold.[default]",
5739
+ "path": ["color", "chart", "success", "bold", "[default]"]
5740
+ }, {
5741
+ "attributes": {
5742
+ "group": "paint",
5743
+ "state": "active",
5744
+ "introduced": "0.13.2",
5745
+ "description": "Hovered state of color.chart.success.bold."
5746
+ },
5747
+ "value": "#BAF3DB",
5748
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5749
+ "isSource": true,
5750
+ "original": {
5751
+ "attributes": {
5752
+ "group": "paint",
5753
+ "state": "active",
5754
+ "introduced": "0.13.2",
5755
+ "description": "Hovered state of color.chart.success.bold."
5756
+ },
5757
+ "value": "Green200"
5758
+ },
5759
+ "name": "color.chart.success.bold.hovered",
5760
+ "path": ["color", "chart", "success", "bold", "hovered"]
5761
+ }, {
5762
+ "attributes": {
5763
+ "group": "paint",
5764
+ "state": "active",
5765
+ "introduced": "0.13.2",
5766
+ "description": "For data visualisation communicating negative information, such as 'off track'."
5767
+ },
5768
+ "value": "#E34935",
5769
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5770
+ "isSource": true,
5771
+ "original": {
5772
+ "attributes": {
5773
+ "group": "paint",
5774
+ "state": "active",
5775
+ "introduced": "0.13.2",
5776
+ "description": "For data visualisation communicating negative information, such as 'off track'."
5777
+ },
5778
+ "value": "Red600"
5779
+ },
5780
+ "name": "color.chart.danger.[default].[default]",
5781
+ "path": ["color", "chart", "danger", "[default]", "[default]"]
5782
+ }, {
5783
+ "attributes": {
5784
+ "group": "paint",
5785
+ "state": "active",
5786
+ "introduced": "0.13.2",
5787
+ "description": "Hovered state of color.chart.danger."
5788
+ },
5789
+ "value": "#EF5C48",
5790
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5791
+ "isSource": true,
5792
+ "original": {
5793
+ "attributes": {
5794
+ "group": "paint",
5795
+ "state": "active",
5796
+ "introduced": "0.13.2",
5797
+ "description": "Hovered state of color.chart.danger."
5798
+ },
5799
+ "value": "Red500"
5800
+ },
5801
+ "name": "color.chart.danger.[default].hovered",
5802
+ "path": ["color", "chart", "danger", "[default]", "hovered"]
5803
+ }, {
5804
+ "attributes": {
5805
+ "group": "paint",
5806
+ "state": "active",
5807
+ "introduced": "0.13.2",
5808
+ "description": "A stronger emphasis option of color.chart.danger."
5809
+ },
5810
+ "value": "#FF9C8F",
5811
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5812
+ "isSource": true,
5813
+ "original": {
5814
+ "attributes": {
5815
+ "group": "paint",
5816
+ "state": "active",
5817
+ "introduced": "0.13.2",
5818
+ "description": "A stronger emphasis option of color.chart.danger."
5819
+ },
5820
+ "value": "Red300"
5821
+ },
5822
+ "name": "color.chart.danger.bold.[default]",
5823
+ "path": ["color", "chart", "danger", "bold", "[default]"]
5824
+ }, {
5825
+ "attributes": {
5826
+ "group": "paint",
5827
+ "state": "active",
5828
+ "introduced": "0.13.2",
5829
+ "description": "Hovered state of color.chart.danger.bold."
5830
+ },
5831
+ "value": "#FFD2CC",
5832
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5833
+ "isSource": true,
5834
+ "original": {
5835
+ "attributes": {
5836
+ "group": "paint",
5837
+ "state": "active",
5838
+ "introduced": "0.13.2",
5839
+ "description": "Hovered state of color.chart.danger.bold."
5840
+ },
5841
+ "value": "Red200"
5842
+ },
5843
+ "name": "color.chart.danger.bold.hovered",
5844
+ "path": ["color", "chart", "danger", "bold", "hovered"]
5845
+ }, {
5846
+ "attributes": {
5847
+ "group": "paint",
5848
+ "state": "active",
5849
+ "introduced": "0.13.2",
5850
+ "description": "For data visualisation communicating caution, such as 'at risk' statuses."
5851
+ },
5852
+ "value": "#CF9F02",
5853
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5854
+ "isSource": true,
5855
+ "original": {
5856
+ "attributes": {
5857
+ "group": "paint",
5858
+ "state": "active",
5859
+ "introduced": "0.13.2",
5860
+ "description": "For data visualisation communicating caution, such as 'at risk' statuses."
5861
+ },
5862
+ "value": "Yellow500"
5863
+ },
5864
+ "name": "color.chart.warning.[default].[default]",
5865
+ "path": ["color", "chart", "warning", "[default]", "[default]"]
5866
+ }, {
5867
+ "attributes": {
5868
+ "group": "paint",
5869
+ "state": "active",
5870
+ "introduced": "0.13.2",
5871
+ "description": "Hovered state of color.chart.warning."
5872
+ },
5873
+ "value": "#E2B203",
5874
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5875
+ "isSource": true,
5876
+ "original": {
5877
+ "attributes": {
5878
+ "group": "paint",
5879
+ "state": "active",
5880
+ "introduced": "0.13.2",
5881
+ "description": "Hovered state of color.chart.warning."
5882
+ },
5883
+ "value": "Yellow400"
5884
+ },
5885
+ "name": "color.chart.warning.[default].hovered",
5886
+ "path": ["color", "chart", "warning", "[default]", "hovered"]
5887
+ }, {
5888
+ "attributes": {
5889
+ "group": "paint",
5890
+ "state": "active",
5891
+ "introduced": "0.13.2",
5892
+ "description": "A stronger emphasis option of color.chart.warning."
5893
+ },
5894
+ "value": "#F5CD47",
5895
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5896
+ "isSource": true,
5897
+ "original": {
5898
+ "attributes": {
5899
+ "group": "paint",
5900
+ "state": "active",
5901
+ "introduced": "0.13.2",
5902
+ "description": "A stronger emphasis option of color.chart.warning."
5903
+ },
5904
+ "value": "Yellow300"
5905
+ },
5906
+ "name": "color.chart.warning.bold.[default]",
5907
+ "path": ["color", "chart", "warning", "bold", "[default]"]
5908
+ }, {
5909
+ "attributes": {
5910
+ "group": "paint",
5911
+ "state": "active",
5912
+ "introduced": "0.13.2",
5913
+ "description": "Hovered state of color.chart.warning.bold."
5914
+ },
5915
+ "value": "#F8E6A0",
5916
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5917
+ "isSource": true,
5918
+ "original": {
5919
+ "attributes": {
5920
+ "group": "paint",
5921
+ "state": "active",
5922
+ "introduced": "0.13.2",
5923
+ "description": "Hovered state of color.chart.warning.bold."
5924
+ },
5925
+ "value": "Yellow200"
5926
+ },
5927
+ "name": "color.chart.warning.bold.hovered",
5928
+ "path": ["color", "chart", "warning", "bold", "hovered"]
5929
+ }, {
5930
+ "attributes": {
5931
+ "group": "paint",
5932
+ "state": "active",
5933
+ "introduced": "0.13.2",
5934
+ "description": "For data visualisation communicating low priority or in-progress statuses."
5935
+ },
5936
+ "value": "#1D7AFC",
5937
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5938
+ "isSource": true,
5939
+ "original": {
5940
+ "attributes": {
5941
+ "group": "paint",
5942
+ "state": "active",
5943
+ "introduced": "0.13.2",
5944
+ "description": "For data visualisation communicating low priority or in-progress statuses."
5945
+ },
5946
+ "value": "Blue600"
5947
+ },
5948
+ "name": "color.chart.information.[default].[default]",
5949
+ "path": ["color", "chart", "information", "[default]", "[default]"]
5950
+ }, {
5951
+ "attributes": {
5952
+ "group": "paint",
5953
+ "state": "active",
5954
+ "introduced": "0.13.2",
5955
+ "description": "Hovered state of color.chart.information."
5956
+ },
5957
+ "value": "#388BFF",
5958
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5959
+ "isSource": true,
5960
+ "original": {
5961
+ "attributes": {
5962
+ "group": "paint",
5963
+ "state": "active",
5964
+ "introduced": "0.13.2",
5965
+ "description": "Hovered state of color.chart.information."
5966
+ },
5967
+ "value": "Blue500"
5968
+ },
5969
+ "name": "color.chart.information.[default].hovered",
5970
+ "path": ["color", "chart", "information", "[default]", "hovered"]
5971
+ }, {
5972
+ "attributes": {
5973
+ "group": "paint",
5974
+ "state": "active",
5975
+ "introduced": "0.13.2",
5976
+ "description": "A stronger emphasis option of color.chart.information."
5977
+ },
5978
+ "value": "#85B8FF",
5979
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
5980
+ "isSource": true,
5981
+ "original": {
5982
+ "attributes": {
5983
+ "group": "paint",
5984
+ "state": "active",
5985
+ "introduced": "0.13.2",
5986
+ "description": "A stronger emphasis option of color.chart.information."
5987
+ },
5988
+ "value": "Blue300"
5989
+ },
5990
+ "name": "color.chart.information.bold.[default]",
5991
+ "path": ["color", "chart", "information", "bold", "[default]"]
5992
+ }, {
5993
+ "attributes": {
5994
+ "group": "paint",
5995
+ "state": "active",
5996
+ "introduced": "0.13.2",
5997
+ "description": "Hovered state of color.chart.information.bold."
5998
+ },
5999
+ "value": "#CCE0FF",
6000
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6001
+ "isSource": true,
6002
+ "original": {
6003
+ "attributes": {
6004
+ "group": "paint",
6005
+ "state": "active",
6006
+ "introduced": "0.13.2",
6007
+ "description": "Hovered state of color.chart.information.bold."
6008
+ },
6009
+ "value": "Blue200"
6010
+ },
6011
+ "name": "color.chart.information.bold.hovered",
6012
+ "path": ["color", "chart", "information", "bold", "hovered"]
6013
+ }, {
6014
+ "attributes": {
6015
+ "group": "paint",
6016
+ "state": "active",
6017
+ "introduced": "0.13.2",
6018
+ "description": "For data visualisation communicating 'new' statuses."
6019
+ },
6020
+ "value": "#8270DB",
6021
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6022
+ "isSource": true,
6023
+ "original": {
6024
+ "attributes": {
6025
+ "group": "paint",
6026
+ "state": "active",
6027
+ "introduced": "0.13.2",
6028
+ "description": "For data visualisation communicating 'new' statuses."
6029
+ },
6030
+ "value": "Purple600"
6031
+ },
6032
+ "name": "color.chart.discovery.[default].[default]",
6033
+ "path": ["color", "chart", "discovery", "[default]", "[default]"]
6034
+ }, {
6035
+ "attributes": {
6036
+ "group": "paint",
6037
+ "state": "active",
6038
+ "introduced": "0.13.2",
6039
+ "description": "Hovered state of color.chart.discovery."
6040
+ },
6041
+ "value": "#8F7EE7",
6042
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6043
+ "isSource": true,
6044
+ "original": {
6045
+ "attributes": {
6046
+ "group": "paint",
6047
+ "state": "active",
6048
+ "introduced": "0.13.2",
6049
+ "description": "Hovered state of color.chart.discovery."
6050
+ },
6051
+ "value": "Purple500"
6052
+ },
6053
+ "name": "color.chart.discovery.[default].hovered",
6054
+ "path": ["color", "chart", "discovery", "[default]", "hovered"]
6055
+ }, {
6056
+ "attributes": {
6057
+ "group": "paint",
6058
+ "state": "active",
6059
+ "introduced": "0.13.2",
6060
+ "description": "A stronger emphasis option of color.chart.discovery."
6061
+ },
6062
+ "value": "#B8ACF6",
6063
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6064
+ "isSource": true,
6065
+ "original": {
6066
+ "attributes": {
6067
+ "group": "paint",
6068
+ "state": "active",
6069
+ "introduced": "0.13.2",
6070
+ "description": "A stronger emphasis option of color.chart.discovery."
6071
+ },
6072
+ "value": "Purple300"
6073
+ },
6074
+ "name": "color.chart.discovery.bold.[default]",
6075
+ "path": ["color", "chart", "discovery", "bold", "[default]"]
6076
+ }, {
6077
+ "attributes": {
6078
+ "group": "paint",
6079
+ "state": "active",
6080
+ "introduced": "0.13.2",
6081
+ "description": "Hovered state of color.chart.discovery.bold."
6082
+ },
6083
+ "value": "#DFD8FD",
6084
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6085
+ "isSource": true,
6086
+ "original": {
6087
+ "attributes": {
6088
+ "group": "paint",
6089
+ "state": "active",
6090
+ "introduced": "0.13.2",
6091
+ "description": "Hovered state of color.chart.discovery.bold."
6092
+ },
6093
+ "value": "Purple200"
6094
+ },
6095
+ "name": "color.chart.discovery.bold.hovered",
6096
+ "path": ["color", "chart", "discovery", "bold", "hovered"]
6097
+ }, {
6098
+ "attributes": {
6099
+ "group": "paint",
6100
+ "state": "active",
6101
+ "introduced": "0.13.2",
6102
+ "description": "For data visualisation only. Follow numbered sequence."
6103
+ },
6104
+ "value": "#1D9AAA",
6105
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6106
+ "isSource": true,
6107
+ "original": {
6108
+ "attributes": {
6109
+ "group": "paint",
6110
+ "state": "active",
6111
+ "introduced": "0.13.2",
6112
+ "description": "For data visualisation only. Follow numbered sequence."
6113
+ },
6114
+ "value": "Teal600"
6115
+ },
6116
+ "name": "color.chart.categorical.1.[default]",
6117
+ "path": ["color", "chart", "categorical", "1", "[default]"]
6118
+ }, {
6119
+ "attributes": {
6120
+ "group": "paint",
6121
+ "state": "active",
6122
+ "introduced": "0.13.2",
6123
+ "description": "Hovered state of color.chart.categorical.1."
6124
+ },
6125
+ "value": "#37B4C3",
6126
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6127
+ "isSource": true,
6128
+ "original": {
6129
+ "attributes": {
6130
+ "group": "paint",
6131
+ "state": "active",
6132
+ "introduced": "0.13.2",
6133
+ "description": "Hovered state of color.chart.categorical.1."
6134
+ },
6135
+ "value": "Teal500"
6136
+ },
6137
+ "name": "color.chart.categorical.1.hovered",
6138
+ "path": ["color", "chart", "categorical", "1", "hovered"]
6139
+ }, {
6140
+ "attributes": {
6141
+ "group": "paint",
6142
+ "state": "active",
6143
+ "introduced": "0.13.2",
6144
+ "description": "For data visualisation only. Follow numbered sequence."
6145
+ },
6146
+ "value": "#B8ACF6",
6147
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6148
+ "isSource": true,
6149
+ "original": {
6150
+ "attributes": {
6151
+ "group": "paint",
6152
+ "state": "active",
6153
+ "introduced": "0.13.2",
6154
+ "description": "For data visualisation only. Follow numbered sequence."
6155
+ },
6156
+ "value": "Purple300"
6157
+ },
6158
+ "name": "color.chart.categorical.2.[default]",
6159
+ "path": ["color", "chart", "categorical", "2", "[default]"]
6160
+ }, {
6161
+ "attributes": {
6162
+ "group": "paint",
6163
+ "state": "active",
6164
+ "introduced": "0.13.2",
6165
+ "description": "Hovered state of color.chart.categorical.2."
6166
+ },
6167
+ "value": "#DFD8FD",
6168
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6169
+ "isSource": true,
6170
+ "original": {
6171
+ "attributes": {
6172
+ "group": "paint",
6173
+ "state": "active",
6174
+ "introduced": "0.13.2",
6175
+ "description": "Hovered state of color.chart.categorical.2."
6176
+ },
6177
+ "value": "Purple200"
6178
+ },
6179
+ "name": "color.chart.categorical.2.hovered",
6180
+ "path": ["color", "chart", "categorical", "2", "hovered"]
6181
+ }, {
6182
+ "attributes": {
6183
+ "group": "paint",
6184
+ "state": "active",
6185
+ "introduced": "0.13.2",
6186
+ "description": "For data visualisation only. Follow numbered sequence."
6187
+ },
6188
+ "value": "#D97008",
6189
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6190
+ "isSource": true,
6191
+ "original": {
6192
+ "attributes": {
6193
+ "group": "paint",
6194
+ "state": "active",
6195
+ "introduced": "0.13.2",
6196
+ "description": "For data visualisation only. Follow numbered sequence."
6197
+ },
6198
+ "value": "Orange600"
6199
+ },
6200
+ "name": "color.chart.categorical.3.[default]",
6201
+ "path": ["color", "chart", "categorical", "3", "[default]"]
6202
+ }, {
6203
+ "attributes": {
6204
+ "group": "paint",
6205
+ "state": "active",
6206
+ "introduced": "0.13.2",
6207
+ "description": "Hovered state of color.chart.categorical.3."
6208
+ },
6209
+ "value": "#F18D13",
6210
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6211
+ "isSource": true,
6212
+ "original": {
6213
+ "attributes": {
6214
+ "group": "paint",
6215
+ "state": "active",
6216
+ "introduced": "0.13.2",
6217
+ "description": "Hovered state of color.chart.categorical.3."
6218
+ },
6219
+ "value": "Orange500"
6220
+ },
6221
+ "name": "color.chart.categorical.3.hovered",
6222
+ "path": ["color", "chart", "categorical", "3", "hovered"]
6223
+ }, {
6224
+ "attributes": {
6225
+ "group": "paint",
6226
+ "state": "active",
6227
+ "introduced": "0.13.2",
6228
+ "description": "For data visualisation only. Follow numbered sequence."
6229
+ },
6230
+ "value": "#F797D2",
6231
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6232
+ "isSource": true,
6233
+ "original": {
6234
+ "attributes": {
6235
+ "group": "paint",
6236
+ "state": "active",
6237
+ "introduced": "0.13.2",
6238
+ "description": "For data visualisation only. Follow numbered sequence."
6239
+ },
6240
+ "value": "Magenta300"
6241
+ },
6242
+ "name": "color.chart.categorical.4.[default]",
6243
+ "path": ["color", "chart", "categorical", "4", "[default]"]
6244
+ }, {
6245
+ "attributes": {
6246
+ "group": "paint",
6247
+ "state": "active",
6248
+ "introduced": "0.13.2",
6249
+ "description": "Hovered state of color.chart.categorical.4."
6250
+ },
6251
+ "value": "#FDD0EC",
6252
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6253
+ "isSource": true,
6254
+ "original": {
6255
+ "attributes": {
6256
+ "group": "paint",
6257
+ "state": "active",
6258
+ "introduced": "0.13.2",
6259
+ "description": "Hovered state of color.chart.categorical.4."
6260
+ },
6261
+ "value": "Magenta200"
6262
+ },
6263
+ "name": "color.chart.categorical.4.hovered",
6264
+ "path": ["color", "chart", "categorical", "4", "hovered"]
6265
+ }, {
6266
+ "attributes": {
6267
+ "group": "paint",
6268
+ "state": "active",
6269
+ "introduced": "0.13.2",
6270
+ "description": "For data visualisation only. Follow numbered sequence."
6271
+ },
6272
+ "value": "#CCE0FF",
6273
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6274
+ "isSource": true,
6275
+ "original": {
6276
+ "attributes": {
6277
+ "group": "paint",
6278
+ "state": "active",
6279
+ "introduced": "0.13.2",
6280
+ "description": "For data visualisation only. Follow numbered sequence."
6281
+ },
6282
+ "value": "Blue200"
6283
+ },
6284
+ "name": "color.chart.categorical.5.[default]",
6285
+ "path": ["color", "chart", "categorical", "5", "[default]"]
6286
+ }, {
6287
+ "attributes": {
6288
+ "group": "paint",
6289
+ "state": "active",
6290
+ "introduced": "0.13.2",
6291
+ "description": "Hovered state of color.chart.categorical.5."
6292
+ },
6293
+ "value": "#E9F2FF",
6294
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6295
+ "isSource": true,
6296
+ "original": {
6297
+ "attributes": {
6298
+ "group": "paint",
6299
+ "state": "active",
6300
+ "introduced": "0.13.2",
6301
+ "description": "Hovered state of color.chart.categorical.5."
6302
+ },
6303
+ "value": "Blue100"
6304
+ },
6305
+ "name": "color.chart.categorical.5.hovered",
6306
+ "path": ["color", "chart", "categorical", "5", "hovered"]
6307
+ }, {
6308
+ "attributes": {
6309
+ "group": "paint",
6310
+ "state": "active",
6311
+ "introduced": "0.13.2",
6312
+ "description": "For data visualisation only. Follow numbered sequence."
6313
+ },
6314
+ "value": "#8270DB",
6315
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6316
+ "isSource": true,
6317
+ "original": {
6318
+ "attributes": {
6319
+ "group": "paint",
6320
+ "state": "active",
6321
+ "introduced": "0.13.2",
6322
+ "description": "For data visualisation only. Follow numbered sequence."
6323
+ },
6324
+ "value": "Purple600"
6325
+ },
6326
+ "name": "color.chart.categorical.6.[default]",
6327
+ "path": ["color", "chart", "categorical", "6", "[default]"]
6328
+ }, {
6329
+ "attributes": {
6330
+ "group": "paint",
6331
+ "state": "active",
6332
+ "introduced": "0.13.2",
6333
+ "description": "Hovered state of color.chart.categorical.6."
6334
+ },
6335
+ "value": "#8F7EE7",
6336
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6337
+ "isSource": true,
6338
+ "original": {
6339
+ "attributes": {
6340
+ "group": "paint",
6341
+ "state": "active",
6342
+ "introduced": "0.13.2",
6343
+ "description": "Hovered state of color.chart.categorical.6."
6344
+ },
6345
+ "value": "Purple500"
6346
+ },
6347
+ "name": "color.chart.categorical.6.hovered",
6348
+ "path": ["color", "chart", "categorical", "6", "hovered"]
6349
+ }, {
6350
+ "attributes": {
6351
+ "group": "paint",
6352
+ "state": "active",
6353
+ "introduced": "0.13.2",
6354
+ "description": "For data visualisation only. Follow numbered sequence."
6355
+ },
6356
+ "value": "#FDD0EC",
6357
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6358
+ "isSource": true,
6359
+ "original": {
6360
+ "attributes": {
6361
+ "group": "paint",
6362
+ "state": "active",
6363
+ "introduced": "0.13.2",
6364
+ "description": "For data visualisation only. Follow numbered sequence."
6365
+ },
6366
+ "value": "Magenta200"
6367
+ },
6368
+ "name": "color.chart.categorical.7.[default]",
6369
+ "path": ["color", "chart", "categorical", "7", "[default]"]
6370
+ }, {
6371
+ "attributes": {
6372
+ "group": "paint",
6373
+ "state": "active",
6374
+ "introduced": "0.13.2",
6375
+ "description": "Hovered state of color.chart.categorical.7."
6376
+ },
6377
+ "value": "#FFECF8",
6378
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6379
+ "isSource": true,
6380
+ "original": {
6381
+ "attributes": {
6382
+ "group": "paint",
6383
+ "state": "active",
6384
+ "introduced": "0.13.2",
6385
+ "description": "Hovered state of color.chart.categorical.7."
6386
+ },
6387
+ "value": "Magenta100"
6388
+ },
6389
+ "name": "color.chart.categorical.7.hovered",
6390
+ "path": ["color", "chart", "categorical", "7", "hovered"]
6391
+ }, {
6392
+ "attributes": {
6393
+ "group": "paint",
6394
+ "state": "active",
6395
+ "introduced": "0.13.2",
6396
+ "description": "For data visualisation only. Follow numbered sequence."
6397
+ },
6398
+ "value": "#FEC57B",
6399
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6400
+ "isSource": true,
6401
+ "original": {
6402
+ "attributes": {
6403
+ "group": "paint",
6404
+ "state": "active",
6405
+ "introduced": "0.13.2",
6406
+ "description": "For data visualisation only. Follow numbered sequence."
6407
+ },
6408
+ "value": "Orange300"
6409
+ },
6410
+ "name": "color.chart.categorical.8.[default]",
6411
+ "path": ["color", "chart", "categorical", "8", "[default]"]
6412
+ }, {
6413
+ "attributes": {
6414
+ "group": "paint",
6415
+ "state": "active",
6416
+ "introduced": "0.13.2",
6417
+ "description": "Hovered state of color.chart.categorical.8."
6418
+ },
6419
+ "value": "#FFE2BD",
6420
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6421
+ "isSource": true,
6422
+ "original": {
6423
+ "attributes": {
6424
+ "group": "paint",
6425
+ "state": "active",
6426
+ "introduced": "0.13.2",
6427
+ "description": "Hovered state of color.chart.categorical.8."
6428
+ },
6429
+ "value": "Orange200"
6430
+ },
6431
+ "name": "color.chart.categorical.8.hovered",
6432
+ "path": ["color", "chart", "categorical", "8", "hovered"]
6433
+ }, {
6434
+ "attributes": {
6435
+ "group": "paint",
6436
+ "state": "active",
6437
+ "introduced": "0.13.2",
6438
+ "description": "For data visualisation only."
6439
+ },
6440
+ "value": "#1D7AFC",
6441
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6442
+ "isSource": true,
6443
+ "original": {
6444
+ "attributes": {
6445
+ "group": "paint",
6446
+ "state": "active",
6447
+ "introduced": "0.13.2",
6448
+ "description": "For data visualisation only."
6449
+ },
6450
+ "value": "Blue600"
6451
+ },
6452
+ "name": "color.chart.blue.bold.[default]",
6453
+ "path": ["color", "chart", "blue", "bold", "[default]"]
6454
+ }, {
6455
+ "attributes": {
6456
+ "group": "paint",
6457
+ "state": "active",
6458
+ "introduced": "0.13.2",
6459
+ "description": "Hovered state of color.chart.blue.bold."
6460
+ },
6461
+ "value": "#388BFF",
6462
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6463
+ "isSource": true,
6464
+ "original": {
6465
+ "attributes": {
6466
+ "group": "paint",
6467
+ "state": "active",
6468
+ "introduced": "0.13.2",
6469
+ "description": "Hovered state of color.chart.blue.bold."
6470
+ },
6471
+ "value": "Blue500"
6472
+ },
6473
+ "name": "color.chart.blue.bold.hovered",
6474
+ "path": ["color", "chart", "blue", "bold", "hovered"]
6475
+ }, {
6476
+ "attributes": {
6477
+ "group": "paint",
6478
+ "state": "active",
6479
+ "introduced": "0.13.2",
6480
+ "description": "For data visualisation only."
6481
+ },
6482
+ "value": "#388BFF",
6483
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6484
+ "isSource": true,
6485
+ "original": {
6486
+ "attributes": {
6487
+ "group": "paint",
6488
+ "state": "active",
6489
+ "introduced": "0.13.2",
6490
+ "description": "For data visualisation only."
6491
+ },
6492
+ "value": "Blue500"
6493
+ },
6494
+ "name": "color.chart.blue.bolder.[default]",
6495
+ "path": ["color", "chart", "blue", "bolder", "[default]"]
6496
+ }, {
6497
+ "attributes": {
6498
+ "group": "paint",
6499
+ "state": "active",
6500
+ "introduced": "0.13.2",
6501
+ "description": "Hovered state of color.chart.blue.bolder."
6502
+ },
6503
+ "value": "#579DFF",
6504
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6505
+ "isSource": true,
6506
+ "original": {
6507
+ "attributes": {
6508
+ "group": "paint",
6509
+ "state": "active",
6510
+ "introduced": "0.13.2",
6511
+ "description": "Hovered state of color.chart.blue.bolder."
6512
+ },
6513
+ "value": "Blue400"
6514
+ },
6515
+ "name": "color.chart.blue.bolder.hovered",
6516
+ "path": ["color", "chart", "blue", "bolder", "hovered"]
6517
+ }, {
6518
+ "attributes": {
6519
+ "group": "paint",
6520
+ "state": "active",
6521
+ "introduced": "0.13.2",
6522
+ "description": "For data visualisation only."
6523
+ },
6524
+ "value": "#85B8FF",
6525
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6526
+ "isSource": true,
6527
+ "original": {
6528
+ "attributes": {
6529
+ "group": "paint",
6530
+ "state": "active",
6531
+ "introduced": "0.13.2",
6532
+ "description": "For data visualisation only."
6533
+ },
6534
+ "value": "Blue300"
6535
+ },
6536
+ "name": "color.chart.blue.boldest.[default]",
6537
+ "path": ["color", "chart", "blue", "boldest", "[default]"]
6538
+ }, {
6539
+ "attributes": {
6540
+ "group": "paint",
6541
+ "state": "active",
6542
+ "introduced": "0.13.2",
6543
+ "description": "Hovered state of color.chart.blue.boldest."
6544
+ },
6545
+ "value": "#CCE0FF",
6546
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6547
+ "isSource": true,
6548
+ "original": {
6549
+ "attributes": {
6550
+ "group": "paint",
6551
+ "state": "active",
6552
+ "introduced": "0.13.2",
6553
+ "description": "Hovered state of color.chart.blue.boldest."
6554
+ },
6555
+ "value": "Blue200"
6556
+ },
6557
+ "name": "color.chart.blue.boldest.hovered",
6558
+ "path": ["color", "chart", "blue", "boldest", "hovered"]
6559
+ }, {
6560
+ "attributes": {
6561
+ "group": "paint",
6562
+ "state": "active",
6563
+ "introduced": "0.13.2",
6564
+ "description": "For data visualisation only."
6565
+ },
6566
+ "value": "#E34935",
6567
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6568
+ "isSource": true,
6569
+ "original": {
6570
+ "attributes": {
6571
+ "group": "paint",
6572
+ "state": "active",
6573
+ "introduced": "0.13.2",
6574
+ "description": "For data visualisation only."
6575
+ },
6576
+ "value": "Red600"
6577
+ },
6578
+ "name": "color.chart.red.bold.[default]",
6579
+ "path": ["color", "chart", "red", "bold", "[default]"]
6580
+ }, {
6581
+ "attributes": {
6582
+ "group": "paint",
6583
+ "state": "active",
6584
+ "introduced": "0.13.2",
6585
+ "description": "Hovered state of color.chart.red.bold."
6586
+ },
6587
+ "value": "#EF5C48",
6588
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6589
+ "isSource": true,
6590
+ "original": {
6591
+ "attributes": {
6592
+ "group": "paint",
6593
+ "state": "active",
6594
+ "introduced": "0.13.2",
6595
+ "description": "Hovered state of color.chart.red.bold."
6596
+ },
6597
+ "value": "Red500"
6598
+ },
6599
+ "name": "color.chart.red.bold.hovered",
6600
+ "path": ["color", "chart", "red", "bold", "hovered"]
6601
+ }, {
6602
+ "attributes": {
6603
+ "group": "paint",
6604
+ "state": "active",
6605
+ "introduced": "0.13.2",
6606
+ "description": "For data visualisation only."
6607
+ },
6608
+ "value": "#EF5C48",
6609
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6610
+ "isSource": true,
6611
+ "original": {
6612
+ "attributes": {
6613
+ "group": "paint",
6614
+ "state": "active",
6615
+ "introduced": "0.13.2",
6616
+ "description": "For data visualisation only."
6617
+ },
6618
+ "value": "Red500"
6619
+ },
6620
+ "name": "color.chart.red.bolder.[default]",
6621
+ "path": ["color", "chart", "red", "bolder", "[default]"]
6622
+ }, {
6623
+ "attributes": {
6624
+ "group": "paint",
6625
+ "state": "active",
6626
+ "introduced": "0.13.2",
6627
+ "description": "Hovered state of color.chart.red.bolder."
6628
+ },
6629
+ "value": "#F87462",
6630
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6631
+ "isSource": true,
6632
+ "original": {
6633
+ "attributes": {
6634
+ "group": "paint",
6635
+ "state": "active",
6636
+ "introduced": "0.13.2",
6637
+ "description": "Hovered state of color.chart.red.bolder."
6638
+ },
6639
+ "value": "Red400"
6640
+ },
6641
+ "name": "color.chart.red.bolder.hovered",
6642
+ "path": ["color", "chart", "red", "bolder", "hovered"]
6643
+ }, {
6644
+ "attributes": {
6645
+ "group": "paint",
6646
+ "state": "active",
6647
+ "introduced": "0.13.2",
6648
+ "description": "For data visualisation only."
6649
+ },
6650
+ "value": "#FF9C8F",
6651
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6652
+ "isSource": true,
6653
+ "original": {
6654
+ "attributes": {
6655
+ "group": "paint",
6656
+ "state": "active",
6657
+ "introduced": "0.13.2",
6658
+ "description": "For data visualisation only."
6659
+ },
6660
+ "value": "Red300"
6661
+ },
6662
+ "name": "color.chart.red.boldest.[default]",
6663
+ "path": ["color", "chart", "red", "boldest", "[default]"]
6664
+ }, {
6665
+ "attributes": {
6666
+ "group": "paint",
6667
+ "state": "active",
6668
+ "introduced": "0.13.2",
6669
+ "description": "Hovered state of color.chart.red.boldest."
6670
+ },
6671
+ "value": "#FFD2CC",
6672
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6673
+ "isSource": true,
6674
+ "original": {
6675
+ "attributes": {
6676
+ "group": "paint",
6677
+ "state": "active",
6678
+ "introduced": "0.13.2",
6679
+ "description": "Hovered state of color.chart.red.boldest."
6680
+ },
6681
+ "value": "Red200"
6682
+ },
6683
+ "name": "color.chart.red.boldest.hovered",
6684
+ "path": ["color", "chart", "red", "boldest", "hovered"]
6685
+ }, {
6686
+ "attributes": {
6687
+ "group": "paint",
6688
+ "state": "active",
6689
+ "introduced": "0.13.2",
6690
+ "description": "For data visualisation only."
6691
+ },
6692
+ "value": "#F18D13",
6693
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6694
+ "isSource": true,
6695
+ "original": {
6696
+ "attributes": {
6697
+ "group": "paint",
6698
+ "state": "active",
6699
+ "introduced": "0.13.2",
6700
+ "description": "For data visualisation only."
6701
+ },
6702
+ "value": "Orange500"
6703
+ },
6704
+ "name": "color.chart.orange.bold.[default]",
6705
+ "path": ["color", "chart", "orange", "bold", "[default]"]
6706
+ }, {
6707
+ "attributes": {
6708
+ "group": "paint",
6709
+ "state": "active",
6710
+ "introduced": "0.13.2",
6711
+ "description": "Hovered state of color.chart.orange.bold."
6712
+ },
6713
+ "value": "#FAA53D",
6714
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6715
+ "isSource": true,
6716
+ "original": {
6717
+ "attributes": {
6718
+ "group": "paint",
6719
+ "state": "active",
6720
+ "introduced": "0.13.2",
6721
+ "description": "Hovered state of color.chart.orange.bold."
6722
+ },
6723
+ "value": "Orange400"
6724
+ },
6725
+ "name": "color.chart.orange.bold.hovered",
6726
+ "path": ["color", "chart", "orange", "bold", "hovered"]
6727
+ }, {
6728
+ "attributes": {
6729
+ "group": "paint",
6730
+ "state": "active",
6731
+ "introduced": "0.13.2",
6732
+ "description": "For data visualisation only."
6733
+ },
6734
+ "value": "#FAA53D",
6735
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6736
+ "isSource": true,
6737
+ "original": {
6738
+ "attributes": {
6739
+ "group": "paint",
6740
+ "state": "active",
6741
+ "introduced": "0.13.2",
6742
+ "description": "For data visualisation only."
6743
+ },
6744
+ "value": "Orange400"
6745
+ },
6746
+ "name": "color.chart.orange.bolder.[default]",
6747
+ "path": ["color", "chart", "orange", "bolder", "[default]"]
6748
+ }, {
6749
+ "attributes": {
6750
+ "group": "paint",
6751
+ "state": "active",
6752
+ "introduced": "0.13.2",
6753
+ "description": "Hovered state of color.chart.orange.bolder."
6754
+ },
6755
+ "value": "#FEC57B",
6756
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6757
+ "isSource": true,
6758
+ "original": {
6759
+ "attributes": {
6760
+ "group": "paint",
6761
+ "state": "active",
6762
+ "introduced": "0.13.2",
6763
+ "description": "Hovered state of color.chart.orange.bolder."
6764
+ },
6765
+ "value": "Orange300"
6766
+ },
6767
+ "name": "color.chart.orange.bolder.hovered",
6768
+ "path": ["color", "chart", "orange", "bolder", "hovered"]
6769
+ }, {
6770
+ "attributes": {
6771
+ "group": "paint",
6772
+ "state": "active",
6773
+ "introduced": "0.13.2",
6774
+ "description": "For data visualisation only."
6775
+ },
6776
+ "value": "#FEC57B",
6777
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6778
+ "isSource": true,
6779
+ "original": {
6780
+ "attributes": {
6781
+ "group": "paint",
6782
+ "state": "active",
6783
+ "introduced": "0.13.2",
6784
+ "description": "For data visualisation only."
6785
+ },
6786
+ "value": "Orange300"
6787
+ },
6788
+ "name": "color.chart.orange.boldest.[default]",
6789
+ "path": ["color", "chart", "orange", "boldest", "[default]"]
6790
+ }, {
6791
+ "attributes": {
6792
+ "group": "paint",
6793
+ "state": "active",
6794
+ "introduced": "0.13.2",
6795
+ "description": "Hovered state of color.chart.orange.boldest."
6796
+ },
6797
+ "value": "#FFE2BD",
6798
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6799
+ "isSource": true,
6800
+ "original": {
6801
+ "attributes": {
6802
+ "group": "paint",
6803
+ "state": "active",
6804
+ "introduced": "0.13.2",
6805
+ "description": "Hovered state of color.chart.orange.boldest."
6806
+ },
6807
+ "value": "Orange200"
6808
+ },
6809
+ "name": "color.chart.orange.boldest.hovered",
6810
+ "path": ["color", "chart", "orange", "boldest", "hovered"]
6811
+ }, {
6812
+ "attributes": {
6813
+ "group": "paint",
6814
+ "state": "active",
6815
+ "introduced": "0.13.2",
6816
+ "description": "For data visualisation only."
6817
+ },
6818
+ "value": "#CF9F02",
6819
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6820
+ "isSource": true,
6821
+ "original": {
6822
+ "attributes": {
6823
+ "group": "paint",
6824
+ "state": "active",
6825
+ "introduced": "0.13.2",
6826
+ "description": "For data visualisation only."
6827
+ },
6828
+ "value": "Yellow500"
6829
+ },
6830
+ "name": "color.chart.yellow.bold.[default]",
6831
+ "path": ["color", "chart", "yellow", "bold", "[default]"]
6832
+ }, {
6833
+ "attributes": {
6834
+ "group": "paint",
6835
+ "state": "active",
6836
+ "introduced": "0.13.2",
6837
+ "description": "Hovered state of color.chart.yellow.bold."
6838
+ },
6839
+ "value": "#E2B203",
6840
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6841
+ "isSource": true,
6842
+ "original": {
6843
+ "attributes": {
6844
+ "group": "paint",
6845
+ "state": "active",
6846
+ "introduced": "0.13.2",
6847
+ "description": "Hovered state of color.chart.yellow.bold."
6848
+ },
6849
+ "value": "Yellow400"
6850
+ },
6851
+ "name": "color.chart.yellow.bold.hovered",
6852
+ "path": ["color", "chart", "yellow", "bold", "hovered"]
6853
+ }, {
6854
+ "attributes": {
6855
+ "group": "paint",
6856
+ "state": "active",
6857
+ "introduced": "0.13.2",
6858
+ "description": "For data visualisation only."
6859
+ },
6860
+ "value": "#E2B203",
6861
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6862
+ "isSource": true,
6863
+ "original": {
6864
+ "attributes": {
6865
+ "group": "paint",
6866
+ "state": "active",
6867
+ "introduced": "0.13.2",
6868
+ "description": "For data visualisation only."
6869
+ },
6870
+ "value": "Yellow400"
6871
+ },
6872
+ "name": "color.chart.yellow.bolder.[default]",
6873
+ "path": ["color", "chart", "yellow", "bolder", "[default]"]
6874
+ }, {
6875
+ "attributes": {
6876
+ "group": "paint",
6877
+ "state": "active",
6878
+ "introduced": "0.13.2",
6879
+ "description": "Hovered state of color.chart.yellow.bolder."
6880
+ },
6881
+ "value": "#F5CD47",
6882
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6883
+ "isSource": true,
6884
+ "original": {
6885
+ "attributes": {
6886
+ "group": "paint",
6887
+ "state": "active",
6888
+ "introduced": "0.13.2",
6889
+ "description": "Hovered state of color.chart.yellow.bolder."
6890
+ },
6891
+ "value": "Yellow300"
6892
+ },
6893
+ "name": "color.chart.yellow.bolder.hovered",
6894
+ "path": ["color", "chart", "yellow", "bolder", "hovered"]
6895
+ }, {
6896
+ "attributes": {
6897
+ "group": "paint",
6898
+ "state": "active",
6899
+ "introduced": "0.13.2",
6900
+ "description": "For data visualisation only."
6901
+ },
6902
+ "value": "#F5CD47",
6903
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6904
+ "isSource": true,
6905
+ "original": {
6906
+ "attributes": {
6907
+ "group": "paint",
6908
+ "state": "active",
6909
+ "introduced": "0.13.2",
6910
+ "description": "For data visualisation only."
6911
+ },
6912
+ "value": "Yellow300"
6913
+ },
6914
+ "name": "color.chart.yellow.boldest.[default]",
6915
+ "path": ["color", "chart", "yellow", "boldest", "[default]"]
6916
+ }, {
6917
+ "attributes": {
6918
+ "group": "paint",
6919
+ "state": "active",
6920
+ "introduced": "0.13.2",
6921
+ "description": "Hovered state of color.chart.yellow.boldest."
6922
+ },
6923
+ "value": "#F8E6A0",
6924
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6925
+ "isSource": true,
6926
+ "original": {
6927
+ "attributes": {
6928
+ "group": "paint",
6929
+ "state": "active",
6930
+ "introduced": "0.13.2",
6931
+ "description": "Hovered state of color.chart.yellow.boldest."
6932
+ },
6933
+ "value": "Yellow200"
6934
+ },
6935
+ "name": "color.chart.yellow.boldest.hovered",
6936
+ "path": ["color", "chart", "yellow", "boldest", "hovered"]
6937
+ }, {
6938
+ "attributes": {
6939
+ "group": "paint",
6940
+ "state": "active",
6941
+ "introduced": "0.13.2",
6942
+ "description": "For data visualisation only."
6943
+ },
6944
+ "value": "#2ABB7F",
6945
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6946
+ "isSource": true,
6947
+ "original": {
6948
+ "attributes": {
6949
+ "group": "paint",
6950
+ "state": "active",
6951
+ "introduced": "0.13.2",
6952
+ "description": "For data visualisation only."
6953
+ },
6954
+ "value": "Green500"
6955
+ },
6956
+ "name": "color.chart.green.bold.[default]",
6957
+ "path": ["color", "chart", "green", "bold", "[default]"]
6958
+ }, {
6959
+ "attributes": {
6960
+ "group": "paint",
6961
+ "state": "active",
6962
+ "introduced": "0.13.2",
6963
+ "description": "Hovered state of color.chart.green.bold."
6964
+ },
6965
+ "value": "#4BCE97",
6966
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6967
+ "isSource": true,
6968
+ "original": {
6969
+ "attributes": {
6970
+ "group": "paint",
6971
+ "state": "active",
6972
+ "introduced": "0.13.2",
6973
+ "description": "Hovered state of color.chart.green.bold."
6974
+ },
6975
+ "value": "Green400"
6976
+ },
6977
+ "name": "color.chart.green.bold.hovered",
6978
+ "path": ["color", "chart", "green", "bold", "hovered"]
6979
+ }, {
6980
+ "attributes": {
6981
+ "group": "paint",
6982
+ "state": "active",
6983
+ "introduced": "0.13.2",
6984
+ "description": "For data visualisation only."
6985
+ },
6986
+ "value": "#4BCE97",
6987
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
6988
+ "isSource": true,
6989
+ "original": {
6990
+ "attributes": {
6991
+ "group": "paint",
6992
+ "state": "active",
6993
+ "introduced": "0.13.2",
6994
+ "description": "For data visualisation only."
6995
+ },
6996
+ "value": "Green400"
6997
+ },
6998
+ "name": "color.chart.green.bolder.[default]",
6999
+ "path": ["color", "chart", "green", "bolder", "[default]"]
7000
+ }, {
7001
+ "attributes": {
7002
+ "group": "paint",
7003
+ "state": "active",
7004
+ "introduced": "0.13.2",
7005
+ "description": "Hovered state of color.chart.green.bolder."
7006
+ },
7007
+ "value": "#7EE2B8",
7008
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7009
+ "isSource": true,
7010
+ "original": {
7011
+ "attributes": {
7012
+ "group": "paint",
7013
+ "state": "active",
7014
+ "introduced": "0.13.2",
7015
+ "description": "Hovered state of color.chart.green.bolder."
7016
+ },
7017
+ "value": "Green300"
7018
+ },
7019
+ "name": "color.chart.green.bolder.hovered",
7020
+ "path": ["color", "chart", "green", "bolder", "hovered"]
7021
+ }, {
7022
+ "attributes": {
7023
+ "group": "paint",
7024
+ "state": "active",
7025
+ "introduced": "0.13.2",
7026
+ "description": "For data visualisation only."
7027
+ },
7028
+ "value": "#7EE2B8",
7029
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7030
+ "isSource": true,
7031
+ "original": {
7032
+ "attributes": {
7033
+ "group": "paint",
7034
+ "state": "active",
7035
+ "introduced": "0.13.2",
7036
+ "description": "For data visualisation only."
7037
+ },
7038
+ "value": "Green300"
7039
+ },
7040
+ "name": "color.chart.green.boldest.[default]",
7041
+ "path": ["color", "chart", "green", "boldest", "[default]"]
7042
+ }, {
7043
+ "attributes": {
7044
+ "group": "paint",
7045
+ "state": "active",
7046
+ "introduced": "0.13.2",
7047
+ "description": "Hovered state of color.chart.green.boldest."
7048
+ },
7049
+ "value": "#BAF3DB",
7050
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7051
+ "isSource": true,
7052
+ "original": {
7053
+ "attributes": {
7054
+ "group": "paint",
7055
+ "state": "active",
7056
+ "introduced": "0.13.2",
7057
+ "description": "Hovered state of color.chart.green.boldest."
7058
+ },
7059
+ "value": "Green200"
7060
+ },
7061
+ "name": "color.chart.green.boldest.hovered",
7062
+ "path": ["color", "chart", "green", "boldest", "hovered"]
7063
+ }, {
7064
+ "attributes": {
7065
+ "group": "paint",
7066
+ "state": "active",
7067
+ "introduced": "0.13.2",
7068
+ "description": "For data visualisation only."
7069
+ },
7070
+ "value": "#37B4C3",
7071
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7072
+ "isSource": true,
7073
+ "original": {
7074
+ "attributes": {
7075
+ "group": "paint",
7076
+ "state": "active",
7077
+ "introduced": "0.13.2",
7078
+ "description": "For data visualisation only."
7079
+ },
7080
+ "value": "Teal500"
7081
+ },
7082
+ "name": "color.chart.teal.bold.[default]",
7083
+ "path": ["color", "chart", "teal", "bold", "[default]"]
7084
+ }, {
7085
+ "attributes": {
7086
+ "group": "paint",
7087
+ "state": "active",
7088
+ "introduced": "0.13.2",
7089
+ "description": "Hovered state of color.chart.teal.bold."
7090
+ },
7091
+ "value": "#60C6D2",
7092
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7093
+ "isSource": true,
7094
+ "original": {
7095
+ "attributes": {
7096
+ "group": "paint",
7097
+ "state": "active",
7098
+ "introduced": "0.13.2",
7099
+ "description": "Hovered state of color.chart.teal.bold."
7100
+ },
7101
+ "value": "Teal400"
7102
+ },
7103
+ "name": "color.chart.teal.bold.hovered",
7104
+ "path": ["color", "chart", "teal", "bold", "hovered"]
7105
+ }, {
7106
+ "attributes": {
7107
+ "group": "paint",
7108
+ "state": "active",
7109
+ "introduced": "0.13.2",
7110
+ "description": "For data visualisation only."
7111
+ },
7112
+ "value": "#60C6D2",
7113
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7114
+ "isSource": true,
7115
+ "original": {
7116
+ "attributes": {
7117
+ "group": "paint",
7118
+ "state": "active",
7119
+ "introduced": "0.13.2",
7120
+ "description": "For data visualisation only."
7121
+ },
7122
+ "value": "Teal400"
7123
+ },
7124
+ "name": "color.chart.teal.bolder.[default]",
7125
+ "path": ["color", "chart", "teal", "bolder", "[default]"]
7126
+ }, {
7127
+ "attributes": {
7128
+ "group": "paint",
7129
+ "state": "active",
7130
+ "introduced": "0.13.2",
7131
+ "description": "Hovered state of color.chart.teal.bolder."
7132
+ },
7133
+ "value": "#8BDBE5",
7134
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7135
+ "isSource": true,
7136
+ "original": {
7137
+ "attributes": {
7138
+ "group": "paint",
7139
+ "state": "active",
7140
+ "introduced": "0.13.2",
7141
+ "description": "Hovered state of color.chart.teal.bolder."
7142
+ },
7143
+ "value": "Teal300"
7144
+ },
7145
+ "name": "color.chart.teal.bolder.hovered",
7146
+ "path": ["color", "chart", "teal", "bolder", "hovered"]
7147
+ }, {
7148
+ "attributes": {
7149
+ "group": "paint",
7150
+ "state": "active",
7151
+ "introduced": "0.13.2",
7152
+ "description": "For data visualisation only."
7153
+ },
7154
+ "value": "#8BDBE5",
7155
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7156
+ "isSource": true,
7157
+ "original": {
7158
+ "attributes": {
7159
+ "group": "paint",
7160
+ "state": "active",
7161
+ "introduced": "0.13.2",
7162
+ "description": "For data visualisation only."
7163
+ },
7164
+ "value": "Teal300"
7165
+ },
7166
+ "name": "color.chart.teal.boldest.[default]",
7167
+ "path": ["color", "chart", "teal", "boldest", "[default]"]
7168
+ }, {
7169
+ "attributes": {
7170
+ "group": "paint",
7171
+ "state": "active",
7172
+ "introduced": "0.13.2",
7173
+ "description": "Hovered state of color.chart.teal.boldest."
7174
+ },
7175
+ "value": "#C1F0F5",
7176
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7177
+ "isSource": true,
7178
+ "original": {
7179
+ "attributes": {
7180
+ "group": "paint",
7181
+ "state": "active",
7182
+ "introduced": "0.13.2",
7183
+ "description": "Hovered state of color.chart.teal.boldest."
7184
+ },
7185
+ "value": "Teal200"
7186
+ },
7187
+ "name": "color.chart.teal.boldest.hovered",
7188
+ "path": ["color", "chart", "teal", "boldest", "hovered"]
7189
+ }, {
7190
+ "attributes": {
7191
+ "group": "paint",
7192
+ "state": "active",
7193
+ "introduced": "0.13.2",
7194
+ "description": "For data visualisation only."
7195
+ },
7196
+ "value": "#8270DB",
7197
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7198
+ "isSource": true,
7199
+ "original": {
7200
+ "attributes": {
7201
+ "group": "paint",
7202
+ "state": "active",
7203
+ "introduced": "0.13.2",
7204
+ "description": "For data visualisation only."
7205
+ },
7206
+ "value": "Purple600"
7207
+ },
7208
+ "name": "color.chart.purple.bold.[default]",
7209
+ "path": ["color", "chart", "purple", "bold", "[default]"]
7210
+ }, {
7211
+ "attributes": {
7212
+ "group": "paint",
7213
+ "state": "active",
7214
+ "introduced": "0.13.2",
7215
+ "description": "Hovered state of color.chart.purple.bold."
7216
+ },
7217
+ "value": "#8F7EE7",
7218
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7219
+ "isSource": true,
7220
+ "original": {
7221
+ "attributes": {
7222
+ "group": "paint",
7223
+ "state": "active",
7224
+ "introduced": "0.13.2",
7225
+ "description": "Hovered state of color.chart.purple.bold."
7226
+ },
7227
+ "value": "Purple500"
7228
+ },
7229
+ "name": "color.chart.purple.bold.hovered",
7230
+ "path": ["color", "chart", "purple", "bold", "hovered"]
7231
+ }, {
7232
+ "attributes": {
7233
+ "group": "paint",
7234
+ "state": "active",
7235
+ "introduced": "0.13.2",
7236
+ "description": "For data visualisation only."
7237
+ },
7238
+ "value": "#8F7EE7",
7239
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7240
+ "isSource": true,
7241
+ "original": {
7242
+ "attributes": {
7243
+ "group": "paint",
7244
+ "state": "active",
7245
+ "introduced": "0.13.2",
7246
+ "description": "For data visualisation only."
7247
+ },
7248
+ "value": "Purple500"
7249
+ },
7250
+ "name": "color.chart.purple.bolder.[default]",
7251
+ "path": ["color", "chart", "purple", "bolder", "[default]"]
7252
+ }, {
7253
+ "attributes": {
7254
+ "group": "paint",
7255
+ "state": "active",
7256
+ "introduced": "0.13.2",
7257
+ "description": "Hovered state of color.chart.purple.bolder."
7258
+ },
7259
+ "value": "#9F8FEF",
7260
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7261
+ "isSource": true,
7262
+ "original": {
7263
+ "attributes": {
7264
+ "group": "paint",
7265
+ "state": "active",
7266
+ "introduced": "0.13.2",
7267
+ "description": "Hovered state of color.chart.purple.bolder."
7268
+ },
7269
+ "value": "Purple400"
7270
+ },
7271
+ "name": "color.chart.purple.bolder.hovered",
7272
+ "path": ["color", "chart", "purple", "bolder", "hovered"]
7273
+ }, {
7274
+ "attributes": {
7275
+ "group": "paint",
7276
+ "state": "active",
7277
+ "introduced": "0.13.2",
7278
+ "description": "For data visualisation only."
7279
+ },
7280
+ "value": "#B8ACF6",
7281
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7282
+ "isSource": true,
7283
+ "original": {
7284
+ "attributes": {
7285
+ "group": "paint",
7286
+ "state": "active",
7287
+ "introduced": "0.13.2",
7288
+ "description": "For data visualisation only."
7289
+ },
7290
+ "value": "Purple300"
7291
+ },
7292
+ "name": "color.chart.purple.boldest.[default]",
7293
+ "path": ["color", "chart", "purple", "boldest", "[default]"]
7294
+ }, {
7295
+ "attributes": {
7296
+ "group": "paint",
7297
+ "state": "active",
7298
+ "introduced": "0.13.2",
7299
+ "description": "Hovered state of color.chart.purple.boldest."
7300
+ },
7301
+ "value": "#DFD8FD",
7302
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7303
+ "isSource": true,
7304
+ "original": {
7305
+ "attributes": {
7306
+ "group": "paint",
7307
+ "state": "active",
7308
+ "introduced": "0.13.2",
7309
+ "description": "Hovered state of color.chart.purple.boldest."
7310
+ },
7311
+ "value": "Purple200"
7312
+ },
7313
+ "name": "color.chart.purple.boldest.hovered",
7314
+ "path": ["color", "chart", "purple", "boldest", "hovered"]
7315
+ }, {
7316
+ "attributes": {
7317
+ "group": "paint",
7318
+ "state": "active",
7319
+ "introduced": "0.13.2",
7320
+ "description": "For data visualisation only."
7321
+ },
7322
+ "value": "#CD519D",
7323
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7324
+ "isSource": true,
7325
+ "original": {
7326
+ "attributes": {
7327
+ "group": "paint",
7328
+ "state": "active",
7329
+ "introduced": "0.13.2",
7330
+ "description": "For data visualisation only."
7331
+ },
7332
+ "value": "Magenta600"
7333
+ },
7334
+ "name": "color.chart.magenta.bold.[default]",
7335
+ "path": ["color", "chart", "magenta", "bold", "[default]"]
7336
+ }, {
7337
+ "attributes": {
7338
+ "group": "paint",
7339
+ "state": "active",
7340
+ "introduced": "0.13.2",
7341
+ "description": "Hovered state of color.chart.magenta.bold."
7342
+ },
7343
+ "value": "#DA62AC",
7344
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7345
+ "isSource": true,
7346
+ "original": {
7347
+ "attributes": {
7348
+ "group": "paint",
7349
+ "state": "active",
7350
+ "introduced": "0.13.2",
7351
+ "description": "Hovered state of color.chart.magenta.bold."
7352
+ },
7353
+ "value": "Magenta500"
7354
+ },
7355
+ "name": "color.chart.magenta.bold.hovered",
7356
+ "path": ["color", "chart", "magenta", "bold", "hovered"]
7357
+ }, {
7358
+ "attributes": {
7359
+ "group": "paint",
7360
+ "state": "active",
7361
+ "introduced": "0.13.2",
7362
+ "description": "For data visualisation only."
7363
+ },
7364
+ "value": "#DA62AC",
7365
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7366
+ "isSource": true,
7367
+ "original": {
7368
+ "attributes": {
7369
+ "group": "paint",
7370
+ "state": "active",
7371
+ "introduced": "0.13.2",
7372
+ "description": "For data visualisation only."
7373
+ },
7374
+ "value": "Magenta500"
7375
+ },
7376
+ "name": "color.chart.magenta.bolder.[default]",
7377
+ "path": ["color", "chart", "magenta", "bolder", "[default]"]
7378
+ }, {
7379
+ "attributes": {
7380
+ "group": "paint",
7381
+ "state": "active",
7382
+ "introduced": "0.13.2",
7383
+ "description": "Hovered state of color.chart.magenta.bolder."
7384
+ },
7385
+ "value": "#E774BB",
7386
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7387
+ "isSource": true,
7388
+ "original": {
7389
+ "attributes": {
7390
+ "group": "paint",
7391
+ "state": "active",
7392
+ "introduced": "0.13.2",
7393
+ "description": "Hovered state of color.chart.magenta.bolder."
7394
+ },
7395
+ "value": "Magenta400"
7396
+ },
7397
+ "name": "color.chart.magenta.bolder.hovered",
7398
+ "path": ["color", "chart", "magenta", "bolder", "hovered"]
7399
+ }, {
7400
+ "attributes": {
7401
+ "group": "paint",
7402
+ "state": "active",
7403
+ "introduced": "0.13.2",
7404
+ "description": "For data visualisation only."
7405
+ },
7406
+ "value": "#F797D2",
7407
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7408
+ "isSource": true,
7409
+ "original": {
7410
+ "attributes": {
7411
+ "group": "paint",
7412
+ "state": "active",
7413
+ "introduced": "0.13.2",
7414
+ "description": "For data visualisation only."
7415
+ },
7416
+ "value": "Magenta300"
7417
+ },
7418
+ "name": "color.chart.magenta.boldest.[default]",
7419
+ "path": ["color", "chart", "magenta", "boldest", "[default]"]
7420
+ }, {
7421
+ "attributes": {
7422
+ "group": "paint",
7423
+ "state": "active",
7424
+ "introduced": "0.13.2",
7425
+ "description": "Hovered state of color.chart.magenta.boldest."
7426
+ },
7427
+ "value": "#FDD0EC",
7428
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7429
+ "isSource": true,
7430
+ "original": {
7431
+ "attributes": {
7432
+ "group": "paint",
7433
+ "state": "active",
7434
+ "introduced": "0.13.2",
7435
+ "description": "Hovered state of color.chart.magenta.boldest."
7436
+ },
7437
+ "value": "Magenta200"
7438
+ },
7439
+ "name": "color.chart.magenta.boldest.hovered",
7440
+ "path": ["color", "chart", "magenta", "boldest", "hovered"]
7441
+ }, {
7442
+ "attributes": {
7443
+ "group": "paint",
7444
+ "state": "active",
7445
+ "introduced": "0.13.2",
7446
+ "description": "For data visualisation only."
7447
+ },
7448
+ "value": "#738496",
7449
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7450
+ "isSource": true,
7451
+ "original": {
7452
+ "attributes": {
7453
+ "group": "paint",
7454
+ "state": "active",
7455
+ "introduced": "0.13.2",
7456
+ "description": "For data visualisation only."
7457
+ },
7458
+ "value": "DarkNeutral600"
7459
+ },
7460
+ "name": "color.chart.gray.bold.[default]",
7461
+ "path": ["color", "chart", "gray", "bold", "[default]"]
7462
+ }, {
7463
+ "attributes": {
7464
+ "group": "paint",
7465
+ "state": "active",
7466
+ "introduced": "0.13.2",
7467
+ "description": "Hovered state of color.chart.gray.bold."
7468
+ },
7469
+ "value": "#8696A7",
7470
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7471
+ "isSource": true,
7472
+ "original": {
7473
+ "attributes": {
7474
+ "group": "paint",
7475
+ "state": "active",
7476
+ "introduced": "0.13.2",
7477
+ "description": "Hovered state of color.chart.gray.bold."
7478
+ },
7479
+ "value": "DarkNeutral700"
7480
+ },
7481
+ "name": "color.chart.gray.bold.hovered",
7482
+ "path": ["color", "chart", "gray", "bold", "hovered"]
7483
+ }, {
7484
+ "attributes": {
7485
+ "group": "paint",
7486
+ "state": "active",
7487
+ "introduced": "0.13.2",
7488
+ "description": "For data visualisation only."
7489
+ },
7490
+ "value": "#8696A7",
7491
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7492
+ "isSource": true,
7493
+ "original": {
7494
+ "attributes": {
7495
+ "group": "paint",
7496
+ "state": "active",
7497
+ "introduced": "0.13.2",
7498
+ "description": "For data visualisation only."
7499
+ },
7500
+ "value": "DarkNeutral700"
7501
+ },
7502
+ "name": "color.chart.gray.bolder.[default]",
7503
+ "path": ["color", "chart", "gray", "bolder", "[default]"]
7504
+ }, {
7505
+ "attributes": {
7506
+ "group": "paint",
7507
+ "state": "active",
7508
+ "introduced": "0.13.2",
7509
+ "description": "Hovered state of color.chart.gray.bolder."
7510
+ },
7511
+ "value": "#9FADBC",
7512
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7513
+ "isSource": true,
7514
+ "original": {
7515
+ "attributes": {
7516
+ "group": "paint",
7517
+ "state": "active",
7518
+ "introduced": "0.13.2",
7519
+ "description": "Hovered state of color.chart.gray.bolder."
7520
+ },
7521
+ "value": "DarkNeutral800"
7522
+ },
7523
+ "name": "color.chart.gray.bolder.hovered",
7524
+ "path": ["color", "chart", "gray", "bolder", "hovered"]
7525
+ }, {
7526
+ "attributes": {
7527
+ "group": "paint",
7528
+ "state": "active",
7529
+ "introduced": "0.13.2",
7530
+ "description": "For data visualisation only."
7531
+ },
7532
+ "value": "#9FADBC",
7533
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7534
+ "isSource": true,
7535
+ "original": {
7536
+ "attributes": {
7537
+ "group": "paint",
7538
+ "state": "active",
7539
+ "introduced": "0.13.2",
7540
+ "description": "For data visualisation only."
7541
+ },
7542
+ "value": "DarkNeutral800"
7543
+ },
7544
+ "name": "color.chart.gray.boldest.[default]",
7545
+ "path": ["color", "chart", "gray", "boldest", "[default]"]
7546
+ }, {
7547
+ "attributes": {
7548
+ "group": "paint",
7549
+ "state": "active",
7550
+ "introduced": "0.13.2",
7551
+ "description": "Hovered state of color.chart.gray.boldest."
7552
+ },
7553
+ "value": "#B6C2CF",
7554
+ "filePath": "src/tokens/atlassian-dark/color/chart.tsx",
7555
+ "isSource": true,
7556
+ "original": {
7557
+ "attributes": {
7558
+ "group": "paint",
7559
+ "state": "active",
7560
+ "introduced": "0.13.2",
7561
+ "description": "Hovered state of color.chart.gray.boldest."
7562
+ },
7563
+ "value": "DarkNeutral900"
7564
+ },
7565
+ "name": "color.chart.gray.boldest.hovered",
7566
+ "path": ["color", "chart", "gray", "boldest", "hovered"]
5593
7567
  }, {
5594
7568
  "attributes": {
5595
7569
  "group": "paint",