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