@atlaskit/tokens 1.17.1 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +102 -0
- package/dist/cjs/artifacts/generated-pairs.js +2 -2
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +92 -77
- package/dist/cjs/artifacts/themes/atlassian-dark.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-legacy-dark.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-legacy-light.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-light.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +84 -3
- package/dist/cjs/artifacts/token-names.js +82 -1
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +2044 -284
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +2052 -292
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +2038 -278
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +2037 -277
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +44 -99
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +42 -97
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +42 -97
- package/dist/cjs/babel-plugin/plugin.js +2 -2
- package/dist/cjs/get-global-theme.js +2 -2
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/typography-palette.js +46 -40
- package/dist/cjs/tokens/atlassian-dark/color/accent.js +360 -40
- package/dist/cjs/tokens/atlassian-legacy-dark/color/accent.js +396 -52
- package/dist/cjs/tokens/atlassian-legacy-light/color/accent.js +396 -52
- package/dist/cjs/tokens/atlassian-light/color/accent.js +360 -40
- package/dist/cjs/tokens/atlassian-typography/theme.js +10 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +12 -2
- package/dist/cjs/tokens/atlassian-typography-minor3/theme.js +10 -0
- package/dist/cjs/tokens/default/color/accent.js +920 -200
- package/dist/cjs/tokens/default/typography/font.js +8 -0
- package/dist/cjs/utils/generate-custom-color-ramp.js +2 -2
- package/dist/es2019/artifacts/generated-pairs.js +2 -2
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +92 -77
- package/dist/es2019/artifacts/themes/atlassian-dark.js +81 -1
- package/dist/es2019/artifacts/themes/atlassian-legacy-dark.js +85 -5
- package/dist/es2019/artifacts/themes/atlassian-legacy-light.js +86 -6
- package/dist/es2019/artifacts/themes/atlassian-light.js +81 -1
- package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +4 -3
- package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +2 -1
- package/dist/es2019/artifacts/themes/atlassian-typography.js +2 -1
- package/dist/es2019/artifacts/token-default-values.js +84 -3
- package/dist/es2019/artifacts/token-names.js +82 -1
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +2044 -284
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +2052 -292
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +2038 -278
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +2037 -277
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +44 -99
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +42 -97
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +42 -97
- package/dist/es2019/get-theme-styles.js +1 -2
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/typography-palette.js +44 -38
- package/dist/es2019/tokens/atlassian-dark/color/accent.js +360 -40
- package/dist/es2019/tokens/atlassian-legacy-dark/color/accent.js +396 -52
- package/dist/es2019/tokens/atlassian-legacy-light/color/accent.js +396 -52
- package/dist/es2019/tokens/atlassian-light/color/accent.js +360 -40
- package/dist/es2019/tokens/atlassian-typography/theme.js +10 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +12 -2
- package/dist/es2019/tokens/atlassian-typography-minor3/theme.js +10 -0
- package/dist/es2019/tokens/default/color/accent.js +920 -200
- package/dist/es2019/tokens/default/typography/font.js +8 -0
- package/dist/esm/artifacts/generated-pairs.js +2 -2
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +92 -77
- package/dist/esm/artifacts/themes/atlassian-dark.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-legacy-dark.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-legacy-light.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-light.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +84 -3
- package/dist/esm/artifacts/token-names.js +82 -1
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +2044 -284
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +2052 -292
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +2038 -278
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +2037 -277
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +44 -99
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +42 -97
- package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +42 -97
- package/dist/esm/babel-plugin/plugin.js +2 -2
- package/dist/esm/get-global-theme.js +2 -2
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/typography-palette.js +46 -40
- package/dist/esm/tokens/atlassian-dark/color/accent.js +360 -40
- package/dist/esm/tokens/atlassian-legacy-dark/color/accent.js +396 -52
- package/dist/esm/tokens/atlassian-legacy-light/color/accent.js +396 -52
- package/dist/esm/tokens/atlassian-light/color/accent.js +360 -40
- package/dist/esm/tokens/atlassian-typography/theme.js +10 -0
- package/dist/esm/tokens/atlassian-typography-adg3/theme.js +12 -2
- package/dist/esm/tokens/atlassian-typography-minor3/theme.js +10 -0
- package/dist/esm/tokens/default/color/accent.js +920 -200
- package/dist/esm/tokens/default/typography/font.js +8 -0
- package/dist/esm/utils/generate-custom-color-ramp.js +2 -2
- package/dist/types/artifacts/generated-pairs.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-dark.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-legacy-dark.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-legacy-light.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-light.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +84 -3
- package/dist/types/artifacts/token-names.d.ts +163 -1
- package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +2 -45
- package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +2 -81
- package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +2 -81
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/palettes/typography-palette.d.ts +1 -1
- package/dist/types/types.d.ts +206 -46
- package/dist/types-ts4.5/artifacts/generated-pairs.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-dark.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-legacy-dark.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-legacy-light.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-light.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +84 -3
- package/dist/types-ts4.5/artifacts/token-names.d.ts +163 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +2 -45
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +2 -81
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +2 -81
- package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
- package/dist/types-ts4.5/palettes/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/types.d.ts +206 -46
- package/figma/atlassian-dark.json +720 -0
- package/figma/atlassian-legacy-dark.json +724 -4
- package/figma/atlassian-legacy-light.json +724 -4
- package/figma/atlassian-light.json +720 -0
- package/package.json +1 -1
- package/report.api.md +362 -40
- package/tmp/api-report-tmp.d.ts +164 -2
|
@@ -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::
|
|
3
|
+
* @codegen <<SignedSource::9faa03010b915213b0e7b73c8c9a4264>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
var tokens = [{
|
|
@@ -1782,9 +1782,53 @@ var tokens = [{
|
|
|
1782
1782
|
},
|
|
1783
1783
|
"value": "#EEFBDA"
|
|
1784
1784
|
},
|
|
1785
|
-
"name": "color.background.accent.lime.subtlest",
|
|
1786
|
-
"path": ["color", "background", "accent", "lime", "subtlest"],
|
|
1785
|
+
"name": "color.background.accent.lime.subtlest.[default]",
|
|
1786
|
+
"path": ["color", "background", "accent", "lime", "subtlest", "[default]"],
|
|
1787
1787
|
"cleanName": "color.background.accent.lime.subtlest"
|
|
1788
|
+
}, {
|
|
1789
|
+
"attributes": {
|
|
1790
|
+
"group": "paint",
|
|
1791
|
+
"state": "active",
|
|
1792
|
+
"introduced": "1.19.0",
|
|
1793
|
+
"description": "Hovered state of color.background.accent.lime.subtlest."
|
|
1794
|
+
},
|
|
1795
|
+
"value": "#D3F1A7",
|
|
1796
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1797
|
+
"isSource": true,
|
|
1798
|
+
"original": {
|
|
1799
|
+
"attributes": {
|
|
1800
|
+
"group": "paint",
|
|
1801
|
+
"state": "active",
|
|
1802
|
+
"introduced": "1.19.0",
|
|
1803
|
+
"description": "Hovered state of color.background.accent.lime.subtlest."
|
|
1804
|
+
},
|
|
1805
|
+
"value": "#D3F1A7"
|
|
1806
|
+
},
|
|
1807
|
+
"name": "color.background.accent.lime.subtlest.hovered",
|
|
1808
|
+
"path": ["color", "background", "accent", "lime", "subtlest", "hovered"],
|
|
1809
|
+
"cleanName": "color.background.accent.lime.subtlest.hovered"
|
|
1810
|
+
}, {
|
|
1811
|
+
"attributes": {
|
|
1812
|
+
"group": "paint",
|
|
1813
|
+
"state": "active",
|
|
1814
|
+
"introduced": "1.19.0",
|
|
1815
|
+
"description": "Pressed state of color.background.accent.lime.subtlest."
|
|
1816
|
+
},
|
|
1817
|
+
"value": "#B3DF72",
|
|
1818
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1819
|
+
"isSource": true,
|
|
1820
|
+
"original": {
|
|
1821
|
+
"attributes": {
|
|
1822
|
+
"group": "paint",
|
|
1823
|
+
"state": "active",
|
|
1824
|
+
"introduced": "1.19.0",
|
|
1825
|
+
"description": "Pressed state of color.background.accent.lime.subtlest."
|
|
1826
|
+
},
|
|
1827
|
+
"value": "#B3DF72"
|
|
1828
|
+
},
|
|
1829
|
+
"name": "color.background.accent.lime.subtlest.pressed",
|
|
1830
|
+
"path": ["color", "background", "accent", "lime", "subtlest", "pressed"],
|
|
1831
|
+
"cleanName": "color.background.accent.lime.subtlest.pressed"
|
|
1788
1832
|
}, {
|
|
1789
1833
|
"attributes": {
|
|
1790
1834
|
"group": "paint",
|
|
@@ -1804,9 +1848,53 @@ var tokens = [{
|
|
|
1804
1848
|
},
|
|
1805
1849
|
"value": "#D3F1A7"
|
|
1806
1850
|
},
|
|
1807
|
-
"name": "color.background.accent.lime.subtler",
|
|
1808
|
-
"path": ["color", "background", "accent", "lime", "subtler"],
|
|
1851
|
+
"name": "color.background.accent.lime.subtler.[default]",
|
|
1852
|
+
"path": ["color", "background", "accent", "lime", "subtler", "[default]"],
|
|
1809
1853
|
"cleanName": "color.background.accent.lime.subtler"
|
|
1854
|
+
}, {
|
|
1855
|
+
"attributes": {
|
|
1856
|
+
"group": "paint",
|
|
1857
|
+
"state": "active",
|
|
1858
|
+
"introduced": "1.19.0",
|
|
1859
|
+
"description": "Hovered state of color.background.accent.lime.subtler."
|
|
1860
|
+
},
|
|
1861
|
+
"value": "#B3DF72",
|
|
1862
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1863
|
+
"isSource": true,
|
|
1864
|
+
"original": {
|
|
1865
|
+
"attributes": {
|
|
1866
|
+
"group": "paint",
|
|
1867
|
+
"state": "active",
|
|
1868
|
+
"introduced": "1.19.0",
|
|
1869
|
+
"description": "Hovered state of color.background.accent.lime.subtler."
|
|
1870
|
+
},
|
|
1871
|
+
"value": "#B3DF72"
|
|
1872
|
+
},
|
|
1873
|
+
"name": "color.background.accent.lime.subtler.hovered",
|
|
1874
|
+
"path": ["color", "background", "accent", "lime", "subtler", "hovered"],
|
|
1875
|
+
"cleanName": "color.background.accent.lime.subtler.hovered"
|
|
1876
|
+
}, {
|
|
1877
|
+
"attributes": {
|
|
1878
|
+
"group": "paint",
|
|
1879
|
+
"state": "active",
|
|
1880
|
+
"introduced": "1.19.0",
|
|
1881
|
+
"description": "Pressed state of color.background.accent.lime.subtler."
|
|
1882
|
+
},
|
|
1883
|
+
"value": "#94C748",
|
|
1884
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1885
|
+
"isSource": true,
|
|
1886
|
+
"original": {
|
|
1887
|
+
"attributes": {
|
|
1888
|
+
"group": "paint",
|
|
1889
|
+
"state": "active",
|
|
1890
|
+
"introduced": "1.19.0",
|
|
1891
|
+
"description": "Pressed state of color.background.accent.lime.subtler."
|
|
1892
|
+
},
|
|
1893
|
+
"value": "#94C748"
|
|
1894
|
+
},
|
|
1895
|
+
"name": "color.background.accent.lime.subtler.pressed",
|
|
1896
|
+
"path": ["color", "background", "accent", "lime", "subtler", "pressed"],
|
|
1897
|
+
"cleanName": "color.background.accent.lime.subtler.pressed"
|
|
1810
1898
|
}, {
|
|
1811
1899
|
"attributes": {
|
|
1812
1900
|
"group": "paint",
|
|
@@ -1826,9 +1914,53 @@ var tokens = [{
|
|
|
1826
1914
|
},
|
|
1827
1915
|
"value": "#94C748"
|
|
1828
1916
|
},
|
|
1829
|
-
"name": "color.background.accent.lime.subtle",
|
|
1830
|
-
"path": ["color", "background", "accent", "lime", "subtle"],
|
|
1917
|
+
"name": "color.background.accent.lime.subtle.[default]",
|
|
1918
|
+
"path": ["color", "background", "accent", "lime", "subtle", "[default]"],
|
|
1831
1919
|
"cleanName": "color.background.accent.lime.subtle"
|
|
1920
|
+
}, {
|
|
1921
|
+
"attributes": {
|
|
1922
|
+
"group": "paint",
|
|
1923
|
+
"state": "active",
|
|
1924
|
+
"introduced": "1.19.0",
|
|
1925
|
+
"description": "Hovered state of color.background.accent.lime.subtle."
|
|
1926
|
+
},
|
|
1927
|
+
"value": "#B3DF72",
|
|
1928
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1929
|
+
"isSource": true,
|
|
1930
|
+
"original": {
|
|
1931
|
+
"attributes": {
|
|
1932
|
+
"group": "paint",
|
|
1933
|
+
"state": "active",
|
|
1934
|
+
"introduced": "1.19.0",
|
|
1935
|
+
"description": "Hovered state of color.background.accent.lime.subtle."
|
|
1936
|
+
},
|
|
1937
|
+
"value": "#B3DF72"
|
|
1938
|
+
},
|
|
1939
|
+
"name": "color.background.accent.lime.subtle.hovered",
|
|
1940
|
+
"path": ["color", "background", "accent", "lime", "subtle", "hovered"],
|
|
1941
|
+
"cleanName": "color.background.accent.lime.subtle.hovered"
|
|
1942
|
+
}, {
|
|
1943
|
+
"attributes": {
|
|
1944
|
+
"group": "paint",
|
|
1945
|
+
"state": "active",
|
|
1946
|
+
"introduced": "1.19.0",
|
|
1947
|
+
"description": "Pressed state of color.background.accent.lime.subtle."
|
|
1948
|
+
},
|
|
1949
|
+
"value": "#D3F1A7",
|
|
1950
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1951
|
+
"isSource": true,
|
|
1952
|
+
"original": {
|
|
1953
|
+
"attributes": {
|
|
1954
|
+
"group": "paint",
|
|
1955
|
+
"state": "active",
|
|
1956
|
+
"introduced": "1.19.0",
|
|
1957
|
+
"description": "Pressed state of color.background.accent.lime.subtle."
|
|
1958
|
+
},
|
|
1959
|
+
"value": "#D3F1A7"
|
|
1960
|
+
},
|
|
1961
|
+
"name": "color.background.accent.lime.subtle.pressed",
|
|
1962
|
+
"path": ["color", "background", "accent", "lime", "subtle", "pressed"],
|
|
1963
|
+
"cleanName": "color.background.accent.lime.subtle.pressed"
|
|
1832
1964
|
}, {
|
|
1833
1965
|
"attributes": {
|
|
1834
1966
|
"group": "paint",
|
|
@@ -1848,9 +1980,53 @@ var tokens = [{
|
|
|
1848
1980
|
},
|
|
1849
1981
|
"value": "#5B7F24"
|
|
1850
1982
|
},
|
|
1851
|
-
"name": "color.background.accent.lime.bolder",
|
|
1852
|
-
"path": ["color", "background", "accent", "lime", "bolder"],
|
|
1983
|
+
"name": "color.background.accent.lime.bolder.[default]",
|
|
1984
|
+
"path": ["color", "background", "accent", "lime", "bolder", "[default]"],
|
|
1853
1985
|
"cleanName": "color.background.accent.lime.bolder"
|
|
1986
|
+
}, {
|
|
1987
|
+
"attributes": {
|
|
1988
|
+
"group": "paint",
|
|
1989
|
+
"state": "active",
|
|
1990
|
+
"introduced": "1.19.0",
|
|
1991
|
+
"description": "Hovered state of color.background.accent.lime.bolder."
|
|
1992
|
+
},
|
|
1993
|
+
"value": "#37471F",
|
|
1994
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1995
|
+
"isSource": true,
|
|
1996
|
+
"original": {
|
|
1997
|
+
"attributes": {
|
|
1998
|
+
"group": "paint",
|
|
1999
|
+
"state": "active",
|
|
2000
|
+
"introduced": "1.19.0",
|
|
2001
|
+
"description": "Hovered state of color.background.accent.lime.bolder."
|
|
2002
|
+
},
|
|
2003
|
+
"value": "#37471F"
|
|
2004
|
+
},
|
|
2005
|
+
"name": "color.background.accent.lime.bolder.hovered",
|
|
2006
|
+
"path": ["color", "background", "accent", "lime", "bolder", "hovered"],
|
|
2007
|
+
"cleanName": "color.background.accent.lime.bolder.hovered"
|
|
2008
|
+
}, {
|
|
2009
|
+
"attributes": {
|
|
2010
|
+
"group": "paint",
|
|
2011
|
+
"state": "active",
|
|
2012
|
+
"introduced": "1.19.0",
|
|
2013
|
+
"description": "Pressed state of color.background.accent.lime.bolder."
|
|
2014
|
+
},
|
|
2015
|
+
"value": "#37471F",
|
|
2016
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2017
|
+
"isSource": true,
|
|
2018
|
+
"original": {
|
|
2019
|
+
"attributes": {
|
|
2020
|
+
"group": "paint",
|
|
2021
|
+
"state": "active",
|
|
2022
|
+
"introduced": "1.19.0",
|
|
2023
|
+
"description": "Pressed state of color.background.accent.lime.bolder."
|
|
2024
|
+
},
|
|
2025
|
+
"value": "#37471F"
|
|
2026
|
+
},
|
|
2027
|
+
"name": "color.background.accent.lime.bolder.pressed",
|
|
2028
|
+
"path": ["color", "background", "accent", "lime", "bolder", "pressed"],
|
|
2029
|
+
"cleanName": "color.background.accent.lime.bolder.pressed"
|
|
1854
2030
|
}, {
|
|
1855
2031
|
"attributes": {
|
|
1856
2032
|
"group": "paint",
|
|
@@ -1870,9 +2046,53 @@ var tokens = [{
|
|
|
1870
2046
|
},
|
|
1871
2047
|
"value": "R100"
|
|
1872
2048
|
},
|
|
1873
|
-
"name": "color.background.accent.red.subtlest",
|
|
1874
|
-
"path": ["color", "background", "accent", "red", "subtlest"],
|
|
2049
|
+
"name": "color.background.accent.red.subtlest.[default]",
|
|
2050
|
+
"path": ["color", "background", "accent", "red", "subtlest", "[default]"],
|
|
1875
2051
|
"cleanName": "color.background.accent.red.subtlest"
|
|
2052
|
+
}, {
|
|
2053
|
+
"attributes": {
|
|
2054
|
+
"group": "paint",
|
|
2055
|
+
"state": "active",
|
|
2056
|
+
"introduced": "1.19.0",
|
|
2057
|
+
"description": "Hovered state of color.background.accent.red.subtlest."
|
|
2058
|
+
},
|
|
2059
|
+
"value": "#FF7452",
|
|
2060
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2061
|
+
"isSource": true,
|
|
2062
|
+
"original": {
|
|
2063
|
+
"attributes": {
|
|
2064
|
+
"group": "paint",
|
|
2065
|
+
"state": "active",
|
|
2066
|
+
"introduced": "1.19.0",
|
|
2067
|
+
"description": "Hovered state of color.background.accent.red.subtlest."
|
|
2068
|
+
},
|
|
2069
|
+
"value": "R200"
|
|
2070
|
+
},
|
|
2071
|
+
"name": "color.background.accent.red.subtlest.hovered",
|
|
2072
|
+
"path": ["color", "background", "accent", "red", "subtlest", "hovered"],
|
|
2073
|
+
"cleanName": "color.background.accent.red.subtlest.hovered"
|
|
2074
|
+
}, {
|
|
2075
|
+
"attributes": {
|
|
2076
|
+
"group": "paint",
|
|
2077
|
+
"state": "active",
|
|
2078
|
+
"introduced": "1.19.0",
|
|
2079
|
+
"description": "Pressed state of color.background.accent.red.subtlest."
|
|
2080
|
+
},
|
|
2081
|
+
"value": "#FF5630",
|
|
2082
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2083
|
+
"isSource": true,
|
|
2084
|
+
"original": {
|
|
2085
|
+
"attributes": {
|
|
2086
|
+
"group": "paint",
|
|
2087
|
+
"state": "active",
|
|
2088
|
+
"introduced": "1.19.0",
|
|
2089
|
+
"description": "Pressed state of color.background.accent.red.subtlest."
|
|
2090
|
+
},
|
|
2091
|
+
"value": "R300"
|
|
2092
|
+
},
|
|
2093
|
+
"name": "color.background.accent.red.subtlest.pressed",
|
|
2094
|
+
"path": ["color", "background", "accent", "red", "subtlest", "pressed"],
|
|
2095
|
+
"cleanName": "color.background.accent.red.subtlest.pressed"
|
|
1876
2096
|
}, {
|
|
1877
2097
|
"attributes": {
|
|
1878
2098
|
"group": "paint",
|
|
@@ -1892,9 +2112,53 @@ var tokens = [{
|
|
|
1892
2112
|
},
|
|
1893
2113
|
"value": "R200"
|
|
1894
2114
|
},
|
|
1895
|
-
"name": "color.background.accent.red.subtler",
|
|
1896
|
-
"path": ["color", "background", "accent", "red", "subtler"],
|
|
2115
|
+
"name": "color.background.accent.red.subtler.[default]",
|
|
2116
|
+
"path": ["color", "background", "accent", "red", "subtler", "[default]"],
|
|
1897
2117
|
"cleanName": "color.background.accent.red.subtler"
|
|
2118
|
+
}, {
|
|
2119
|
+
"attributes": {
|
|
2120
|
+
"group": "paint",
|
|
2121
|
+
"state": "active",
|
|
2122
|
+
"introduced": "1.19.0",
|
|
2123
|
+
"description": "Hovered state of color.background.accent.red.subtler."
|
|
2124
|
+
},
|
|
2125
|
+
"value": "#FF5630",
|
|
2126
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2127
|
+
"isSource": true,
|
|
2128
|
+
"original": {
|
|
2129
|
+
"attributes": {
|
|
2130
|
+
"group": "paint",
|
|
2131
|
+
"state": "active",
|
|
2132
|
+
"introduced": "1.19.0",
|
|
2133
|
+
"description": "Hovered state of color.background.accent.red.subtler."
|
|
2134
|
+
},
|
|
2135
|
+
"value": "R300"
|
|
2136
|
+
},
|
|
2137
|
+
"name": "color.background.accent.red.subtler.hovered",
|
|
2138
|
+
"path": ["color", "background", "accent", "red", "subtler", "hovered"],
|
|
2139
|
+
"cleanName": "color.background.accent.red.subtler.hovered"
|
|
2140
|
+
}, {
|
|
2141
|
+
"attributes": {
|
|
2142
|
+
"group": "paint",
|
|
2143
|
+
"state": "active",
|
|
2144
|
+
"introduced": "1.19.0",
|
|
2145
|
+
"description": "Pressed state of color.background.accent.red.subtler."
|
|
2146
|
+
},
|
|
2147
|
+
"value": "#DE350B",
|
|
2148
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2149
|
+
"isSource": true,
|
|
2150
|
+
"original": {
|
|
2151
|
+
"attributes": {
|
|
2152
|
+
"group": "paint",
|
|
2153
|
+
"state": "active",
|
|
2154
|
+
"introduced": "1.19.0",
|
|
2155
|
+
"description": "Pressed state of color.background.accent.red.subtler."
|
|
2156
|
+
},
|
|
2157
|
+
"value": "R400"
|
|
2158
|
+
},
|
|
2159
|
+
"name": "color.background.accent.red.subtler.pressed",
|
|
2160
|
+
"path": ["color", "background", "accent", "red", "subtler", "pressed"],
|
|
2161
|
+
"cleanName": "color.background.accent.red.subtler.pressed"
|
|
1898
2162
|
}, {
|
|
1899
2163
|
"attributes": {
|
|
1900
2164
|
"group": "paint",
|
|
@@ -1914,9 +2178,53 @@ var tokens = [{
|
|
|
1914
2178
|
},
|
|
1915
2179
|
"value": "R400"
|
|
1916
2180
|
},
|
|
1917
|
-
"name": "color.background.accent.red.subtle",
|
|
1918
|
-
"path": ["color", "background", "accent", "red", "subtle"],
|
|
2181
|
+
"name": "color.background.accent.red.subtle.[default]",
|
|
2182
|
+
"path": ["color", "background", "accent", "red", "subtle", "[default]"],
|
|
1919
2183
|
"cleanName": "color.background.accent.red.subtle"
|
|
2184
|
+
}, {
|
|
2185
|
+
"attributes": {
|
|
2186
|
+
"group": "paint",
|
|
2187
|
+
"state": "active",
|
|
2188
|
+
"introduced": "1.19.0",
|
|
2189
|
+
"description": "Hovered state of color.background.accent.red.subtle."
|
|
2190
|
+
},
|
|
2191
|
+
"value": "#FF5630",
|
|
2192
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2193
|
+
"isSource": true,
|
|
2194
|
+
"original": {
|
|
2195
|
+
"attributes": {
|
|
2196
|
+
"group": "paint",
|
|
2197
|
+
"state": "active",
|
|
2198
|
+
"introduced": "1.19.0",
|
|
2199
|
+
"description": "Hovered state of color.background.accent.red.subtle."
|
|
2200
|
+
},
|
|
2201
|
+
"value": "R300"
|
|
2202
|
+
},
|
|
2203
|
+
"name": "color.background.accent.red.subtle.hovered",
|
|
2204
|
+
"path": ["color", "background", "accent", "red", "subtle", "hovered"],
|
|
2205
|
+
"cleanName": "color.background.accent.red.subtle.hovered"
|
|
2206
|
+
}, {
|
|
2207
|
+
"attributes": {
|
|
2208
|
+
"group": "paint",
|
|
2209
|
+
"state": "active",
|
|
2210
|
+
"introduced": "1.19.0",
|
|
2211
|
+
"description": "Pressed state of color.background.accent.red.subtle."
|
|
2212
|
+
},
|
|
2213
|
+
"value": "#FF7452",
|
|
2214
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2215
|
+
"isSource": true,
|
|
2216
|
+
"original": {
|
|
2217
|
+
"attributes": {
|
|
2218
|
+
"group": "paint",
|
|
2219
|
+
"state": "active",
|
|
2220
|
+
"introduced": "1.19.0",
|
|
2221
|
+
"description": "Pressed state of color.background.accent.red.subtle."
|
|
2222
|
+
},
|
|
2223
|
+
"value": "R200"
|
|
2224
|
+
},
|
|
2225
|
+
"name": "color.background.accent.red.subtle.pressed",
|
|
2226
|
+
"path": ["color", "background", "accent", "red", "subtle", "pressed"],
|
|
2227
|
+
"cleanName": "color.background.accent.red.subtle.pressed"
|
|
1920
2228
|
}, {
|
|
1921
2229
|
"attributes": {
|
|
1922
2230
|
"group": "paint",
|
|
@@ -1936,9 +2244,53 @@ var tokens = [{
|
|
|
1936
2244
|
},
|
|
1937
2245
|
"value": "R400"
|
|
1938
2246
|
},
|
|
1939
|
-
"name": "color.background.accent.red.bolder",
|
|
1940
|
-
"path": ["color", "background", "accent", "red", "bolder"],
|
|
2247
|
+
"name": "color.background.accent.red.bolder.[default]",
|
|
2248
|
+
"path": ["color", "background", "accent", "red", "bolder", "[default]"],
|
|
1941
2249
|
"cleanName": "color.background.accent.red.bolder"
|
|
2250
|
+
}, {
|
|
2251
|
+
"attributes": {
|
|
2252
|
+
"group": "paint",
|
|
2253
|
+
"state": "active",
|
|
2254
|
+
"introduced": "1.19.0",
|
|
2255
|
+
"description": "Hovered state of color.background.accent.red.bolder."
|
|
2256
|
+
},
|
|
2257
|
+
"value": "#FF5630",
|
|
2258
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2259
|
+
"isSource": true,
|
|
2260
|
+
"original": {
|
|
2261
|
+
"attributes": {
|
|
2262
|
+
"group": "paint",
|
|
2263
|
+
"state": "active",
|
|
2264
|
+
"introduced": "1.19.0",
|
|
2265
|
+
"description": "Hovered state of color.background.accent.red.bolder."
|
|
2266
|
+
},
|
|
2267
|
+
"value": "R300"
|
|
2268
|
+
},
|
|
2269
|
+
"name": "color.background.accent.red.bolder.hovered",
|
|
2270
|
+
"path": ["color", "background", "accent", "red", "bolder", "hovered"],
|
|
2271
|
+
"cleanName": "color.background.accent.red.bolder.hovered"
|
|
2272
|
+
}, {
|
|
2273
|
+
"attributes": {
|
|
2274
|
+
"group": "paint",
|
|
2275
|
+
"state": "active",
|
|
2276
|
+
"introduced": "1.19.0",
|
|
2277
|
+
"description": "Pressed state of color.background.accent.red.bolder."
|
|
2278
|
+
},
|
|
2279
|
+
"value": "#FF7452",
|
|
2280
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2281
|
+
"isSource": true,
|
|
2282
|
+
"original": {
|
|
2283
|
+
"attributes": {
|
|
2284
|
+
"group": "paint",
|
|
2285
|
+
"state": "active",
|
|
2286
|
+
"introduced": "1.19.0",
|
|
2287
|
+
"description": "Pressed state of color.background.accent.red.bolder."
|
|
2288
|
+
},
|
|
2289
|
+
"value": "R200"
|
|
2290
|
+
},
|
|
2291
|
+
"name": "color.background.accent.red.bolder.pressed",
|
|
2292
|
+
"path": ["color", "background", "accent", "red", "bolder", "pressed"],
|
|
2293
|
+
"cleanName": "color.background.accent.red.bolder.pressed"
|
|
1942
2294
|
}, {
|
|
1943
2295
|
"attributes": {
|
|
1944
2296
|
"group": "paint",
|
|
@@ -1958,105 +2310,1513 @@ var tokens = [{
|
|
|
1958
2310
|
},
|
|
1959
2311
|
"value": "#F18D13"
|
|
1960
2312
|
},
|
|
1961
|
-
"name": "color.background.accent.orange.subtlest",
|
|
1962
|
-
"path": ["color", "background", "accent", "orange", "subtlest"],
|
|
2313
|
+
"name": "color.background.accent.orange.subtlest.[default]",
|
|
2314
|
+
"path": ["color", "background", "accent", "orange", "subtlest", "[default]"],
|
|
1963
2315
|
"cleanName": "color.background.accent.orange.subtlest"
|
|
1964
2316
|
}, {
|
|
1965
2317
|
"attributes": {
|
|
1966
2318
|
"group": "paint",
|
|
1967
2319
|
"state": "active",
|
|
1968
|
-
"introduced": "
|
|
1969
|
-
"description": "
|
|
2320
|
+
"introduced": "1.19.0",
|
|
2321
|
+
"description": "Hovered state of color.background.accent.orange.subtlest."
|
|
1970
2322
|
},
|
|
1971
|
-
"value": "#
|
|
2323
|
+
"value": "#FEC57B",
|
|
1972
2324
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1973
2325
|
"isSource": true,
|
|
1974
2326
|
"original": {
|
|
1975
2327
|
"attributes": {
|
|
1976
2328
|
"group": "paint",
|
|
1977
2329
|
"state": "active",
|
|
1978
|
-
"introduced": "
|
|
1979
|
-
"description": "
|
|
2330
|
+
"introduced": "1.19.0",
|
|
2331
|
+
"description": "Hovered state of color.background.accent.orange.subtlest."
|
|
1980
2332
|
},
|
|
1981
|
-
"value": "#
|
|
2333
|
+
"value": "#FEC57B"
|
|
1982
2334
|
},
|
|
1983
|
-
"name": "color.background.accent.orange.
|
|
1984
|
-
"path": ["color", "background", "accent", "orange", "
|
|
1985
|
-
"cleanName": "color.background.accent.orange.
|
|
2335
|
+
"name": "color.background.accent.orange.subtlest.hovered",
|
|
2336
|
+
"path": ["color", "background", "accent", "orange", "subtlest", "hovered"],
|
|
2337
|
+
"cleanName": "color.background.accent.orange.subtlest.hovered"
|
|
1986
2338
|
}, {
|
|
1987
2339
|
"attributes": {
|
|
1988
2340
|
"group": "paint",
|
|
1989
2341
|
"state": "active",
|
|
1990
|
-
"introduced": "
|
|
1991
|
-
"description": "
|
|
2342
|
+
"introduced": "1.19.0",
|
|
2343
|
+
"description": "Pressed state of color.background.accent.orange.subtlest."
|
|
1992
2344
|
},
|
|
1993
|
-
"value": "#
|
|
2345
|
+
"value": "#FFE2BD",
|
|
1994
2346
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
1995
2347
|
"isSource": true,
|
|
1996
2348
|
"original": {
|
|
1997
2349
|
"attributes": {
|
|
1998
2350
|
"group": "paint",
|
|
1999
2351
|
"state": "active",
|
|
2000
|
-
"introduced": "
|
|
2001
|
-
"description": "
|
|
2352
|
+
"introduced": "1.19.0",
|
|
2353
|
+
"description": "Pressed state of color.background.accent.orange.subtlest."
|
|
2354
|
+
},
|
|
2355
|
+
"value": "#FFE2BD"
|
|
2356
|
+
},
|
|
2357
|
+
"name": "color.background.accent.orange.subtlest.pressed",
|
|
2358
|
+
"path": ["color", "background", "accent", "orange", "subtlest", "pressed"],
|
|
2359
|
+
"cleanName": "color.background.accent.orange.subtlest.pressed"
|
|
2360
|
+
}, {
|
|
2361
|
+
"attributes": {
|
|
2362
|
+
"group": "paint",
|
|
2363
|
+
"state": "active",
|
|
2364
|
+
"introduced": "0.7.0",
|
|
2365
|
+
"description": "Use for orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2366
|
+
},
|
|
2367
|
+
"value": "#B65C02",
|
|
2368
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2369
|
+
"isSource": true,
|
|
2370
|
+
"original": {
|
|
2371
|
+
"attributes": {
|
|
2372
|
+
"group": "paint",
|
|
2373
|
+
"state": "active",
|
|
2374
|
+
"introduced": "0.7.0",
|
|
2375
|
+
"description": "Use for orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2376
|
+
},
|
|
2377
|
+
"value": "#B65C02"
|
|
2378
|
+
},
|
|
2379
|
+
"name": "color.background.accent.orange.subtler.[default]",
|
|
2380
|
+
"path": ["color", "background", "accent", "orange", "subtler", "[default]"],
|
|
2381
|
+
"cleanName": "color.background.accent.orange.subtler"
|
|
2382
|
+
}, {
|
|
2383
|
+
"attributes": {
|
|
2384
|
+
"group": "paint",
|
|
2385
|
+
"state": "active",
|
|
2386
|
+
"introduced": "1.19.0",
|
|
2387
|
+
"description": "Hovered state of color.background.accent.orange.subtler."
|
|
2388
|
+
},
|
|
2389
|
+
"value": "#F18D13",
|
|
2390
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2391
|
+
"isSource": true,
|
|
2392
|
+
"original": {
|
|
2393
|
+
"attributes": {
|
|
2394
|
+
"group": "paint",
|
|
2395
|
+
"state": "active",
|
|
2396
|
+
"introduced": "1.19.0",
|
|
2397
|
+
"description": "Hovered state of color.background.accent.orange.subtler."
|
|
2398
|
+
},
|
|
2399
|
+
"value": "#F18D13"
|
|
2400
|
+
},
|
|
2401
|
+
"name": "color.background.accent.orange.subtler.hovered",
|
|
2402
|
+
"path": ["color", "background", "accent", "orange", "subtler", "hovered"],
|
|
2403
|
+
"cleanName": "color.background.accent.orange.subtler.hovered"
|
|
2404
|
+
}, {
|
|
2405
|
+
"attributes": {
|
|
2406
|
+
"group": "paint",
|
|
2407
|
+
"state": "active",
|
|
2408
|
+
"introduced": "1.19.0",
|
|
2409
|
+
"description": "Pressed state of color.background.accent.orange.subtler."
|
|
2410
|
+
},
|
|
2411
|
+
"value": "#FEC57B",
|
|
2412
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2413
|
+
"isSource": true,
|
|
2414
|
+
"original": {
|
|
2415
|
+
"attributes": {
|
|
2416
|
+
"group": "paint",
|
|
2417
|
+
"state": "active",
|
|
2418
|
+
"introduced": "1.19.0",
|
|
2419
|
+
"description": "Pressed state of color.background.accent.orange.subtler."
|
|
2420
|
+
},
|
|
2421
|
+
"value": "#FEC57B"
|
|
2422
|
+
},
|
|
2423
|
+
"name": "color.background.accent.orange.subtler.pressed",
|
|
2424
|
+
"path": ["color", "background", "accent", "orange", "subtler", "pressed"],
|
|
2425
|
+
"cleanName": "color.background.accent.orange.subtler.pressed"
|
|
2426
|
+
}, {
|
|
2427
|
+
"attributes": {
|
|
2428
|
+
"group": "paint",
|
|
2429
|
+
"state": "active",
|
|
2430
|
+
"introduced": "0.7.0",
|
|
2431
|
+
"description": "Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2432
|
+
},
|
|
2433
|
+
"value": "#5F3811",
|
|
2434
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2435
|
+
"isSource": true,
|
|
2436
|
+
"original": {
|
|
2437
|
+
"attributes": {
|
|
2438
|
+
"group": "paint",
|
|
2439
|
+
"state": "active",
|
|
2440
|
+
"introduced": "0.7.0",
|
|
2441
|
+
"description": "Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2442
|
+
},
|
|
2443
|
+
"value": "#5F3811"
|
|
2444
|
+
},
|
|
2445
|
+
"name": "color.background.accent.orange.subtle.[default]",
|
|
2446
|
+
"path": ["color", "background", "accent", "orange", "subtle", "[default]"],
|
|
2447
|
+
"cleanName": "color.background.accent.orange.subtle"
|
|
2448
|
+
}, {
|
|
2449
|
+
"attributes": {
|
|
2450
|
+
"group": "paint",
|
|
2451
|
+
"state": "active",
|
|
2452
|
+
"introduced": "1.19.0",
|
|
2453
|
+
"description": "Hovered state of color.background.accent.orange.subtle."
|
|
2454
|
+
},
|
|
2455
|
+
"value": "#974F0C",
|
|
2456
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2457
|
+
"isSource": true,
|
|
2458
|
+
"original": {
|
|
2459
|
+
"attributes": {
|
|
2460
|
+
"group": "paint",
|
|
2461
|
+
"state": "active",
|
|
2462
|
+
"introduced": "1.19.0",
|
|
2463
|
+
"description": "Hovered state of color.background.accent.orange.subtle."
|
|
2464
|
+
},
|
|
2465
|
+
"value": "#974F0C"
|
|
2466
|
+
},
|
|
2467
|
+
"name": "color.background.accent.orange.subtle.hovered",
|
|
2468
|
+
"path": ["color", "background", "accent", "orange", "subtle", "hovered"],
|
|
2469
|
+
"cleanName": "color.background.accent.orange.subtle.hovered"
|
|
2470
|
+
}, {
|
|
2471
|
+
"attributes": {
|
|
2472
|
+
"group": "paint",
|
|
2473
|
+
"state": "active",
|
|
2474
|
+
"introduced": "1.19.0",
|
|
2475
|
+
"description": "Pressed state of color.background.accent.orange.subtle."
|
|
2476
|
+
},
|
|
2477
|
+
"value": "#B65C02",
|
|
2478
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2479
|
+
"isSource": true,
|
|
2480
|
+
"original": {
|
|
2481
|
+
"attributes": {
|
|
2482
|
+
"group": "paint",
|
|
2483
|
+
"state": "active",
|
|
2484
|
+
"introduced": "1.19.0",
|
|
2485
|
+
"description": "Pressed state of color.background.accent.orange.subtle."
|
|
2486
|
+
},
|
|
2487
|
+
"value": "#B65C02"
|
|
2488
|
+
},
|
|
2489
|
+
"name": "color.background.accent.orange.subtle.pressed",
|
|
2490
|
+
"path": ["color", "background", "accent", "orange", "subtle", "pressed"],
|
|
2491
|
+
"cleanName": "color.background.accent.orange.subtle.pressed"
|
|
2492
|
+
}, {
|
|
2493
|
+
"attributes": {
|
|
2494
|
+
"group": "paint",
|
|
2495
|
+
"state": "active",
|
|
2496
|
+
"introduced": "0.7.0",
|
|
2497
|
+
"description": "Use for orange backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2498
|
+
},
|
|
2499
|
+
"value": "#43290F",
|
|
2500
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2501
|
+
"isSource": true,
|
|
2502
|
+
"original": {
|
|
2503
|
+
"attributes": {
|
|
2504
|
+
"group": "paint",
|
|
2505
|
+
"state": "active",
|
|
2506
|
+
"introduced": "0.7.0",
|
|
2507
|
+
"description": "Use for orange backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2508
|
+
},
|
|
2509
|
+
"value": "#43290F"
|
|
2510
|
+
},
|
|
2511
|
+
"name": "color.background.accent.orange.bolder.[default]",
|
|
2512
|
+
"path": ["color", "background", "accent", "orange", "bolder", "[default]"],
|
|
2513
|
+
"cleanName": "color.background.accent.orange.bolder"
|
|
2514
|
+
}, {
|
|
2515
|
+
"attributes": {
|
|
2516
|
+
"group": "paint",
|
|
2517
|
+
"state": "active",
|
|
2518
|
+
"introduced": "1.19.0",
|
|
2519
|
+
"description": "Hovered state of color.background.accent.orange.bolder."
|
|
2520
|
+
},
|
|
2521
|
+
"value": "#5F3811",
|
|
2522
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2523
|
+
"isSource": true,
|
|
2524
|
+
"original": {
|
|
2525
|
+
"attributes": {
|
|
2526
|
+
"group": "paint",
|
|
2527
|
+
"state": "active",
|
|
2528
|
+
"introduced": "1.19.0",
|
|
2529
|
+
"description": "Hovered state of color.background.accent.orange.bolder."
|
|
2530
|
+
},
|
|
2531
|
+
"value": "#5F3811"
|
|
2532
|
+
},
|
|
2533
|
+
"name": "color.background.accent.orange.bolder.hovered",
|
|
2534
|
+
"path": ["color", "background", "accent", "orange", "bolder", "hovered"],
|
|
2535
|
+
"cleanName": "color.background.accent.orange.bolder.hovered"
|
|
2536
|
+
}, {
|
|
2537
|
+
"attributes": {
|
|
2538
|
+
"group": "paint",
|
|
2539
|
+
"state": "active",
|
|
2540
|
+
"introduced": "1.19.0",
|
|
2541
|
+
"description": "Pressed state of color.background.accent.orange.bolder."
|
|
2542
|
+
},
|
|
2543
|
+
"value": "#974F0C",
|
|
2544
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2545
|
+
"isSource": true,
|
|
2546
|
+
"original": {
|
|
2547
|
+
"attributes": {
|
|
2548
|
+
"group": "paint",
|
|
2549
|
+
"state": "active",
|
|
2550
|
+
"introduced": "1.19.0",
|
|
2551
|
+
"description": "Pressed state of color.background.accent.orange.bolder."
|
|
2552
|
+
},
|
|
2553
|
+
"value": "#974F0C"
|
|
2554
|
+
},
|
|
2555
|
+
"name": "color.background.accent.orange.bolder.pressed",
|
|
2556
|
+
"path": ["color", "background", "accent", "orange", "bolder", "pressed"],
|
|
2557
|
+
"cleanName": "color.background.accent.orange.bolder.pressed"
|
|
2558
|
+
}, {
|
|
2559
|
+
"attributes": {
|
|
2560
|
+
"group": "paint",
|
|
2561
|
+
"state": "active",
|
|
2562
|
+
"introduced": "0.7.0",
|
|
2563
|
+
"description": "Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2564
|
+
},
|
|
2565
|
+
"value": "#FFE380",
|
|
2566
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2567
|
+
"isSource": true,
|
|
2568
|
+
"original": {
|
|
2569
|
+
"attributes": {
|
|
2570
|
+
"group": "paint",
|
|
2571
|
+
"state": "active",
|
|
2572
|
+
"introduced": "0.7.0",
|
|
2573
|
+
"description": "Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2574
|
+
},
|
|
2575
|
+
"value": "Y100"
|
|
2576
|
+
},
|
|
2577
|
+
"name": "color.background.accent.yellow.subtlest.[default]",
|
|
2578
|
+
"path": ["color", "background", "accent", "yellow", "subtlest", "[default]"],
|
|
2579
|
+
"cleanName": "color.background.accent.yellow.subtlest"
|
|
2580
|
+
}, {
|
|
2581
|
+
"attributes": {
|
|
2582
|
+
"group": "paint",
|
|
2583
|
+
"state": "active",
|
|
2584
|
+
"introduced": "1.19.0",
|
|
2585
|
+
"description": "Hovered state of color.background.accent.yellow.subtlest."
|
|
2586
|
+
},
|
|
2587
|
+
"value": "#FFC400",
|
|
2588
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2589
|
+
"isSource": true,
|
|
2590
|
+
"original": {
|
|
2591
|
+
"attributes": {
|
|
2592
|
+
"group": "paint",
|
|
2593
|
+
"state": "active",
|
|
2594
|
+
"introduced": "1.19.0",
|
|
2595
|
+
"description": "Hovered state of color.background.accent.yellow.subtlest."
|
|
2596
|
+
},
|
|
2597
|
+
"value": "Y200"
|
|
2598
|
+
},
|
|
2599
|
+
"name": "color.background.accent.yellow.subtlest.hovered",
|
|
2600
|
+
"path": ["color", "background", "accent", "yellow", "subtlest", "hovered"],
|
|
2601
|
+
"cleanName": "color.background.accent.yellow.subtlest.hovered"
|
|
2602
|
+
}, {
|
|
2603
|
+
"attributes": {
|
|
2604
|
+
"group": "paint",
|
|
2605
|
+
"state": "active",
|
|
2606
|
+
"introduced": "1.19.0",
|
|
2607
|
+
"description": "Pressed state of color.background.accent.yellow.subtlest."
|
|
2608
|
+
},
|
|
2609
|
+
"value": "#FFAB00",
|
|
2610
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2611
|
+
"isSource": true,
|
|
2612
|
+
"original": {
|
|
2613
|
+
"attributes": {
|
|
2614
|
+
"group": "paint",
|
|
2615
|
+
"state": "active",
|
|
2616
|
+
"introduced": "1.19.0",
|
|
2617
|
+
"description": "Pressed state of color.background.accent.yellow.subtlest."
|
|
2618
|
+
},
|
|
2619
|
+
"value": "Y300"
|
|
2620
|
+
},
|
|
2621
|
+
"name": "color.background.accent.yellow.subtlest.pressed",
|
|
2622
|
+
"path": ["color", "background", "accent", "yellow", "subtlest", "pressed"],
|
|
2623
|
+
"cleanName": "color.background.accent.yellow.subtlest.pressed"
|
|
2624
|
+
}, {
|
|
2625
|
+
"attributes": {
|
|
2626
|
+
"group": "paint",
|
|
2627
|
+
"state": "active",
|
|
2628
|
+
"introduced": "0.7.0",
|
|
2629
|
+
"description": "Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2630
|
+
},
|
|
2631
|
+
"value": "#FFC400",
|
|
2632
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2633
|
+
"isSource": true,
|
|
2634
|
+
"original": {
|
|
2635
|
+
"attributes": {
|
|
2636
|
+
"group": "paint",
|
|
2637
|
+
"state": "active",
|
|
2638
|
+
"introduced": "0.7.0",
|
|
2639
|
+
"description": "Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2640
|
+
},
|
|
2641
|
+
"value": "Y200"
|
|
2642
|
+
},
|
|
2643
|
+
"name": "color.background.accent.yellow.subtler.[default]",
|
|
2644
|
+
"path": ["color", "background", "accent", "yellow", "subtler", "[default]"],
|
|
2645
|
+
"cleanName": "color.background.accent.yellow.subtler"
|
|
2646
|
+
}, {
|
|
2647
|
+
"attributes": {
|
|
2648
|
+
"group": "paint",
|
|
2649
|
+
"state": "active",
|
|
2650
|
+
"introduced": "1.19.0",
|
|
2651
|
+
"description": "Hovered state of color.background.accent.yellow.subtler."
|
|
2652
|
+
},
|
|
2653
|
+
"value": "#FFAB00",
|
|
2654
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2655
|
+
"isSource": true,
|
|
2656
|
+
"original": {
|
|
2657
|
+
"attributes": {
|
|
2658
|
+
"group": "paint",
|
|
2659
|
+
"state": "active",
|
|
2660
|
+
"introduced": "1.19.0",
|
|
2661
|
+
"description": "Hovered state of color.background.accent.yellow.subtler."
|
|
2662
|
+
},
|
|
2663
|
+
"value": "Y300"
|
|
2664
|
+
},
|
|
2665
|
+
"name": "color.background.accent.yellow.subtler.hovered",
|
|
2666
|
+
"path": ["color", "background", "accent", "yellow", "subtler", "hovered"],
|
|
2667
|
+
"cleanName": "color.background.accent.yellow.subtler.hovered"
|
|
2668
|
+
}, {
|
|
2669
|
+
"attributes": {
|
|
2670
|
+
"group": "paint",
|
|
2671
|
+
"state": "active",
|
|
2672
|
+
"introduced": "1.19.0",
|
|
2673
|
+
"description": "Pressed state of color.background.accent.yellow.subtler."
|
|
2674
|
+
},
|
|
2675
|
+
"value": "#FF991F",
|
|
2676
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2677
|
+
"isSource": true,
|
|
2678
|
+
"original": {
|
|
2679
|
+
"attributes": {
|
|
2680
|
+
"group": "paint",
|
|
2681
|
+
"state": "active",
|
|
2682
|
+
"introduced": "1.19.0",
|
|
2683
|
+
"description": "Pressed state of color.background.accent.yellow.subtler."
|
|
2684
|
+
},
|
|
2685
|
+
"value": "Y400"
|
|
2686
|
+
},
|
|
2687
|
+
"name": "color.background.accent.yellow.subtler.pressed",
|
|
2688
|
+
"path": ["color", "background", "accent", "yellow", "subtler", "pressed"],
|
|
2689
|
+
"cleanName": "color.background.accent.yellow.subtler.pressed"
|
|
2690
|
+
}, {
|
|
2691
|
+
"attributes": {
|
|
2692
|
+
"group": "paint",
|
|
2693
|
+
"state": "active",
|
|
2694
|
+
"introduced": "0.7.0",
|
|
2695
|
+
"description": "Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2696
|
+
},
|
|
2697
|
+
"value": "#FF991F",
|
|
2698
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2699
|
+
"isSource": true,
|
|
2700
|
+
"original": {
|
|
2701
|
+
"attributes": {
|
|
2702
|
+
"group": "paint",
|
|
2703
|
+
"state": "active",
|
|
2704
|
+
"introduced": "0.7.0",
|
|
2705
|
+
"description": "Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2706
|
+
},
|
|
2707
|
+
"value": "Y400"
|
|
2708
|
+
},
|
|
2709
|
+
"name": "color.background.accent.yellow.subtle.[default]",
|
|
2710
|
+
"path": ["color", "background", "accent", "yellow", "subtle", "[default]"],
|
|
2711
|
+
"cleanName": "color.background.accent.yellow.subtle"
|
|
2712
|
+
}, {
|
|
2713
|
+
"attributes": {
|
|
2714
|
+
"group": "paint",
|
|
2715
|
+
"state": "active",
|
|
2716
|
+
"introduced": "1.19.0",
|
|
2717
|
+
"description": "Hovered state of color.background.accent.yellow.subtle."
|
|
2718
|
+
},
|
|
2719
|
+
"value": "#FFAB00",
|
|
2720
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2721
|
+
"isSource": true,
|
|
2722
|
+
"original": {
|
|
2723
|
+
"attributes": {
|
|
2724
|
+
"group": "paint",
|
|
2725
|
+
"state": "active",
|
|
2726
|
+
"introduced": "1.19.0",
|
|
2727
|
+
"description": "Hovered state of color.background.accent.yellow.subtle."
|
|
2728
|
+
},
|
|
2729
|
+
"value": "Y300"
|
|
2730
|
+
},
|
|
2731
|
+
"name": "color.background.accent.yellow.subtle.hovered",
|
|
2732
|
+
"path": ["color", "background", "accent", "yellow", "subtle", "hovered"],
|
|
2733
|
+
"cleanName": "color.background.accent.yellow.subtle.hovered"
|
|
2734
|
+
}, {
|
|
2735
|
+
"attributes": {
|
|
2736
|
+
"group": "paint",
|
|
2737
|
+
"state": "active",
|
|
2738
|
+
"introduced": "1.19.0",
|
|
2739
|
+
"description": "Pressed state of color.background.accent.yellow.subtle."
|
|
2740
|
+
},
|
|
2741
|
+
"value": "#FFC400",
|
|
2742
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2743
|
+
"isSource": true,
|
|
2744
|
+
"original": {
|
|
2745
|
+
"attributes": {
|
|
2746
|
+
"group": "paint",
|
|
2747
|
+
"state": "active",
|
|
2748
|
+
"introduced": "1.19.0",
|
|
2749
|
+
"description": "Pressed state of color.background.accent.yellow.subtle."
|
|
2750
|
+
},
|
|
2751
|
+
"value": "Y200"
|
|
2752
|
+
},
|
|
2753
|
+
"name": "color.background.accent.yellow.subtle.pressed",
|
|
2754
|
+
"path": ["color", "background", "accent", "yellow", "subtle", "pressed"],
|
|
2755
|
+
"cleanName": "color.background.accent.yellow.subtle.pressed"
|
|
2756
|
+
}, {
|
|
2757
|
+
"attributes": {
|
|
2758
|
+
"group": "paint",
|
|
2759
|
+
"state": "active",
|
|
2760
|
+
"introduced": "0.7.0",
|
|
2761
|
+
"description": "Use for yellow backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2762
|
+
},
|
|
2763
|
+
"value": "#FF991F",
|
|
2764
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2765
|
+
"isSource": true,
|
|
2766
|
+
"original": {
|
|
2767
|
+
"attributes": {
|
|
2768
|
+
"group": "paint",
|
|
2769
|
+
"state": "active",
|
|
2770
|
+
"introduced": "0.7.0",
|
|
2771
|
+
"description": "Use for yellow backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2772
|
+
},
|
|
2773
|
+
"value": "Y400"
|
|
2774
|
+
},
|
|
2775
|
+
"name": "color.background.accent.yellow.bolder.[default]",
|
|
2776
|
+
"path": ["color", "background", "accent", "yellow", "bolder", "[default]"],
|
|
2777
|
+
"cleanName": "color.background.accent.yellow.bolder"
|
|
2778
|
+
}, {
|
|
2779
|
+
"attributes": {
|
|
2780
|
+
"group": "paint",
|
|
2781
|
+
"state": "active",
|
|
2782
|
+
"introduced": "1.19.0",
|
|
2783
|
+
"description": "Hovered state of color.background.accent.yellow.bolder."
|
|
2784
|
+
},
|
|
2785
|
+
"value": "#FFAB00",
|
|
2786
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2787
|
+
"isSource": true,
|
|
2788
|
+
"original": {
|
|
2789
|
+
"attributes": {
|
|
2790
|
+
"group": "paint",
|
|
2791
|
+
"state": "active",
|
|
2792
|
+
"introduced": "1.19.0",
|
|
2793
|
+
"description": "Hovered state of color.background.accent.yellow.bolder."
|
|
2794
|
+
},
|
|
2795
|
+
"value": "Y300"
|
|
2796
|
+
},
|
|
2797
|
+
"name": "color.background.accent.yellow.bolder.hovered",
|
|
2798
|
+
"path": ["color", "background", "accent", "yellow", "bolder", "hovered"],
|
|
2799
|
+
"cleanName": "color.background.accent.yellow.bolder.hovered"
|
|
2800
|
+
}, {
|
|
2801
|
+
"attributes": {
|
|
2802
|
+
"group": "paint",
|
|
2803
|
+
"state": "active",
|
|
2804
|
+
"introduced": "1.19.0",
|
|
2805
|
+
"description": "Pressed state of color.background.accent.yellow.bolder."
|
|
2806
|
+
},
|
|
2807
|
+
"value": "#FFC400",
|
|
2808
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2809
|
+
"isSource": true,
|
|
2810
|
+
"original": {
|
|
2811
|
+
"attributes": {
|
|
2812
|
+
"group": "paint",
|
|
2813
|
+
"state": "active",
|
|
2814
|
+
"introduced": "1.19.0",
|
|
2815
|
+
"description": "Pressed state of color.background.accent.yellow.bolder."
|
|
2816
|
+
},
|
|
2817
|
+
"value": "Y200"
|
|
2818
|
+
},
|
|
2819
|
+
"name": "color.background.accent.yellow.bolder.pressed",
|
|
2820
|
+
"path": ["color", "background", "accent", "yellow", "bolder", "pressed"],
|
|
2821
|
+
"cleanName": "color.background.accent.yellow.bolder.pressed"
|
|
2822
|
+
}, {
|
|
2823
|
+
"attributes": {
|
|
2824
|
+
"group": "paint",
|
|
2825
|
+
"state": "active",
|
|
2826
|
+
"introduced": "0.7.0",
|
|
2827
|
+
"description": "Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2828
|
+
},
|
|
2829
|
+
"value": "#79F2C0",
|
|
2830
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2831
|
+
"isSource": true,
|
|
2832
|
+
"original": {
|
|
2833
|
+
"attributes": {
|
|
2834
|
+
"group": "paint",
|
|
2835
|
+
"state": "active",
|
|
2836
|
+
"introduced": "0.7.0",
|
|
2837
|
+
"description": "Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2838
|
+
},
|
|
2839
|
+
"value": "G100"
|
|
2840
|
+
},
|
|
2841
|
+
"name": "color.background.accent.green.subtlest.[default]",
|
|
2842
|
+
"path": ["color", "background", "accent", "green", "subtlest", "[default]"],
|
|
2843
|
+
"cleanName": "color.background.accent.green.subtlest"
|
|
2844
|
+
}, {
|
|
2845
|
+
"attributes": {
|
|
2846
|
+
"group": "paint",
|
|
2847
|
+
"state": "active",
|
|
2848
|
+
"introduced": "1.19.0",
|
|
2849
|
+
"description": "Hovered state of color.background.accent.green.subtlest."
|
|
2850
|
+
},
|
|
2851
|
+
"value": "#57D9A3",
|
|
2852
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2853
|
+
"isSource": true,
|
|
2854
|
+
"original": {
|
|
2855
|
+
"attributes": {
|
|
2856
|
+
"group": "paint",
|
|
2857
|
+
"state": "active",
|
|
2858
|
+
"introduced": "1.19.0",
|
|
2859
|
+
"description": "Hovered state of color.background.accent.green.subtlest."
|
|
2860
|
+
},
|
|
2861
|
+
"value": "G200"
|
|
2862
|
+
},
|
|
2863
|
+
"name": "color.background.accent.green.subtlest.hovered",
|
|
2864
|
+
"path": ["color", "background", "accent", "green", "subtlest", "hovered"],
|
|
2865
|
+
"cleanName": "color.background.accent.green.subtlest.hovered"
|
|
2866
|
+
}, {
|
|
2867
|
+
"attributes": {
|
|
2868
|
+
"group": "paint",
|
|
2869
|
+
"state": "active",
|
|
2870
|
+
"introduced": "1.19.0",
|
|
2871
|
+
"description": "Pressed state of color.background.accent.green.subtlest."
|
|
2872
|
+
},
|
|
2873
|
+
"value": "#36B37E",
|
|
2874
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2875
|
+
"isSource": true,
|
|
2876
|
+
"original": {
|
|
2877
|
+
"attributes": {
|
|
2878
|
+
"group": "paint",
|
|
2879
|
+
"state": "active",
|
|
2880
|
+
"introduced": "1.19.0",
|
|
2881
|
+
"description": "Pressed state of color.background.accent.green.subtlest."
|
|
2882
|
+
},
|
|
2883
|
+
"value": "G300"
|
|
2884
|
+
},
|
|
2885
|
+
"name": "color.background.accent.green.subtlest.pressed",
|
|
2886
|
+
"path": ["color", "background", "accent", "green", "subtlest", "pressed"],
|
|
2887
|
+
"cleanName": "color.background.accent.green.subtlest.pressed"
|
|
2888
|
+
}, {
|
|
2889
|
+
"attributes": {
|
|
2890
|
+
"group": "paint",
|
|
2891
|
+
"state": "active",
|
|
2892
|
+
"introduced": "0.7.0",
|
|
2893
|
+
"description": "Use for green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2894
|
+
},
|
|
2895
|
+
"value": "#57D9A3",
|
|
2896
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2897
|
+
"isSource": true,
|
|
2898
|
+
"original": {
|
|
2899
|
+
"attributes": {
|
|
2900
|
+
"group": "paint",
|
|
2901
|
+
"state": "active",
|
|
2902
|
+
"introduced": "0.7.0",
|
|
2903
|
+
"description": "Use for green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2904
|
+
},
|
|
2905
|
+
"value": "G200"
|
|
2906
|
+
},
|
|
2907
|
+
"name": "color.background.accent.green.subtler.[default]",
|
|
2908
|
+
"path": ["color", "background", "accent", "green", "subtler", "[default]"],
|
|
2909
|
+
"cleanName": "color.background.accent.green.subtler"
|
|
2910
|
+
}, {
|
|
2911
|
+
"attributes": {
|
|
2912
|
+
"group": "paint",
|
|
2913
|
+
"state": "active",
|
|
2914
|
+
"introduced": "1.19.0",
|
|
2915
|
+
"description": "Hovered state of color.background.accent.green.subtler."
|
|
2916
|
+
},
|
|
2917
|
+
"value": "#36B37E",
|
|
2918
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2919
|
+
"isSource": true,
|
|
2920
|
+
"original": {
|
|
2921
|
+
"attributes": {
|
|
2922
|
+
"group": "paint",
|
|
2923
|
+
"state": "active",
|
|
2924
|
+
"introduced": "1.19.0",
|
|
2925
|
+
"description": "Hovered state of color.background.accent.green.subtler."
|
|
2926
|
+
},
|
|
2927
|
+
"value": "G300"
|
|
2928
|
+
},
|
|
2929
|
+
"name": "color.background.accent.green.subtler.hovered",
|
|
2930
|
+
"path": ["color", "background", "accent", "green", "subtler", "hovered"],
|
|
2931
|
+
"cleanName": "color.background.accent.green.subtler.hovered"
|
|
2932
|
+
}, {
|
|
2933
|
+
"attributes": {
|
|
2934
|
+
"group": "paint",
|
|
2935
|
+
"state": "active",
|
|
2936
|
+
"introduced": "1.19.0",
|
|
2937
|
+
"description": "Pressed state of color.background.accent.green.subtler."
|
|
2938
|
+
},
|
|
2939
|
+
"value": "#00875A",
|
|
2940
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2941
|
+
"isSource": true,
|
|
2942
|
+
"original": {
|
|
2943
|
+
"attributes": {
|
|
2944
|
+
"group": "paint",
|
|
2945
|
+
"state": "active",
|
|
2946
|
+
"introduced": "1.19.0",
|
|
2947
|
+
"description": "Pressed state of color.background.accent.green.subtler."
|
|
2948
|
+
},
|
|
2949
|
+
"value": "G400"
|
|
2950
|
+
},
|
|
2951
|
+
"name": "color.background.accent.green.subtler.pressed",
|
|
2952
|
+
"path": ["color", "background", "accent", "green", "subtler", "pressed"],
|
|
2953
|
+
"cleanName": "color.background.accent.green.subtler.pressed"
|
|
2954
|
+
}, {
|
|
2955
|
+
"attributes": {
|
|
2956
|
+
"group": "paint",
|
|
2957
|
+
"state": "active",
|
|
2958
|
+
"introduced": "0.7.0",
|
|
2959
|
+
"description": "Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2960
|
+
},
|
|
2961
|
+
"value": "#00875A",
|
|
2962
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2963
|
+
"isSource": true,
|
|
2964
|
+
"original": {
|
|
2965
|
+
"attributes": {
|
|
2966
|
+
"group": "paint",
|
|
2967
|
+
"state": "active",
|
|
2968
|
+
"introduced": "0.7.0",
|
|
2969
|
+
"description": "Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2970
|
+
},
|
|
2971
|
+
"value": "G400"
|
|
2972
|
+
},
|
|
2973
|
+
"name": "color.background.accent.green.subtle.[default]",
|
|
2974
|
+
"path": ["color", "background", "accent", "green", "subtle", "[default]"],
|
|
2975
|
+
"cleanName": "color.background.accent.green.subtle"
|
|
2976
|
+
}, {
|
|
2977
|
+
"attributes": {
|
|
2978
|
+
"group": "paint",
|
|
2979
|
+
"state": "active",
|
|
2980
|
+
"introduced": "1.19.0",
|
|
2981
|
+
"description": "Hovered state of color.background.accent.green.subtle."
|
|
2982
|
+
},
|
|
2983
|
+
"value": "#36B37E",
|
|
2984
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2985
|
+
"isSource": true,
|
|
2986
|
+
"original": {
|
|
2987
|
+
"attributes": {
|
|
2988
|
+
"group": "paint",
|
|
2989
|
+
"state": "active",
|
|
2990
|
+
"introduced": "1.19.0",
|
|
2991
|
+
"description": "Hovered state of color.background.accent.green.subtle."
|
|
2992
|
+
},
|
|
2993
|
+
"value": "G300"
|
|
2994
|
+
},
|
|
2995
|
+
"name": "color.background.accent.green.subtle.hovered",
|
|
2996
|
+
"path": ["color", "background", "accent", "green", "subtle", "hovered"],
|
|
2997
|
+
"cleanName": "color.background.accent.green.subtle.hovered"
|
|
2998
|
+
}, {
|
|
2999
|
+
"attributes": {
|
|
3000
|
+
"group": "paint",
|
|
3001
|
+
"state": "active",
|
|
3002
|
+
"introduced": "1.19.0",
|
|
3003
|
+
"description": "Pressed state of color.background.accent.green.subtle."
|
|
3004
|
+
},
|
|
3005
|
+
"value": "#57D9A3",
|
|
3006
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3007
|
+
"isSource": true,
|
|
3008
|
+
"original": {
|
|
3009
|
+
"attributes": {
|
|
3010
|
+
"group": "paint",
|
|
3011
|
+
"state": "active",
|
|
3012
|
+
"introduced": "1.19.0",
|
|
3013
|
+
"description": "Pressed state of color.background.accent.green.subtle."
|
|
3014
|
+
},
|
|
3015
|
+
"value": "G200"
|
|
3016
|
+
},
|
|
3017
|
+
"name": "color.background.accent.green.subtle.pressed",
|
|
3018
|
+
"path": ["color", "background", "accent", "green", "subtle", "pressed"],
|
|
3019
|
+
"cleanName": "color.background.accent.green.subtle.pressed"
|
|
3020
|
+
}, {
|
|
3021
|
+
"attributes": {
|
|
3022
|
+
"group": "paint",
|
|
3023
|
+
"state": "active",
|
|
3024
|
+
"introduced": "0.7.0",
|
|
3025
|
+
"description": "Use for green backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
3026
|
+
},
|
|
3027
|
+
"value": "#00875A",
|
|
3028
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3029
|
+
"isSource": true,
|
|
3030
|
+
"original": {
|
|
3031
|
+
"attributes": {
|
|
3032
|
+
"group": "paint",
|
|
3033
|
+
"state": "active",
|
|
3034
|
+
"introduced": "0.7.0",
|
|
3035
|
+
"description": "Use for green backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
3036
|
+
},
|
|
3037
|
+
"value": "G400"
|
|
3038
|
+
},
|
|
3039
|
+
"name": "color.background.accent.green.bolder.[default]",
|
|
3040
|
+
"path": ["color", "background", "accent", "green", "bolder", "[default]"],
|
|
3041
|
+
"cleanName": "color.background.accent.green.bolder"
|
|
3042
|
+
}, {
|
|
3043
|
+
"attributes": {
|
|
3044
|
+
"group": "paint",
|
|
3045
|
+
"state": "active",
|
|
3046
|
+
"introduced": "1.19.0",
|
|
3047
|
+
"description": "Hovered state of color.background.accent.green.bolder."
|
|
3048
|
+
},
|
|
3049
|
+
"value": "#36B37E",
|
|
3050
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3051
|
+
"isSource": true,
|
|
3052
|
+
"original": {
|
|
3053
|
+
"attributes": {
|
|
3054
|
+
"group": "paint",
|
|
3055
|
+
"state": "active",
|
|
3056
|
+
"introduced": "1.19.0",
|
|
3057
|
+
"description": "Hovered state of color.background.accent.green.bolder."
|
|
3058
|
+
},
|
|
3059
|
+
"value": "G300"
|
|
3060
|
+
},
|
|
3061
|
+
"name": "color.background.accent.green.bolder.hovered",
|
|
3062
|
+
"path": ["color", "background", "accent", "green", "bolder", "hovered"],
|
|
3063
|
+
"cleanName": "color.background.accent.green.bolder.hovered"
|
|
3064
|
+
}, {
|
|
3065
|
+
"attributes": {
|
|
3066
|
+
"group": "paint",
|
|
3067
|
+
"state": "active",
|
|
3068
|
+
"introduced": "1.19.0",
|
|
3069
|
+
"description": "Pressed state of color.background.accent.green.bolder."
|
|
3070
|
+
},
|
|
3071
|
+
"value": "#57D9A3",
|
|
3072
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3073
|
+
"isSource": true,
|
|
3074
|
+
"original": {
|
|
3075
|
+
"attributes": {
|
|
3076
|
+
"group": "paint",
|
|
3077
|
+
"state": "active",
|
|
3078
|
+
"introduced": "1.19.0",
|
|
3079
|
+
"description": "Pressed state of color.background.accent.green.bolder."
|
|
3080
|
+
},
|
|
3081
|
+
"value": "G200"
|
|
3082
|
+
},
|
|
3083
|
+
"name": "color.background.accent.green.bolder.pressed",
|
|
3084
|
+
"path": ["color", "background", "accent", "green", "bolder", "pressed"],
|
|
3085
|
+
"cleanName": "color.background.accent.green.bolder.pressed"
|
|
3086
|
+
}, {
|
|
3087
|
+
"attributes": {
|
|
3088
|
+
"group": "paint",
|
|
3089
|
+
"state": "active",
|
|
3090
|
+
"introduced": "0.7.0",
|
|
3091
|
+
"description": "Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
3092
|
+
},
|
|
3093
|
+
"value": "#79E2F2",
|
|
3094
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3095
|
+
"isSource": true,
|
|
3096
|
+
"original": {
|
|
3097
|
+
"attributes": {
|
|
3098
|
+
"group": "paint",
|
|
3099
|
+
"state": "active",
|
|
3100
|
+
"introduced": "0.7.0",
|
|
3101
|
+
"description": "Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
3102
|
+
},
|
|
3103
|
+
"value": "T100"
|
|
3104
|
+
},
|
|
3105
|
+
"name": "color.background.accent.teal.subtlest.[default]",
|
|
3106
|
+
"path": ["color", "background", "accent", "teal", "subtlest", "[default]"],
|
|
3107
|
+
"cleanName": "color.background.accent.teal.subtlest"
|
|
3108
|
+
}, {
|
|
3109
|
+
"attributes": {
|
|
3110
|
+
"group": "paint",
|
|
3111
|
+
"state": "active",
|
|
3112
|
+
"introduced": "1.19.0",
|
|
3113
|
+
"description": "Hovered state of color.background.accent.teal.subtlest."
|
|
3114
|
+
},
|
|
3115
|
+
"value": "#00C7E6",
|
|
3116
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3117
|
+
"isSource": true,
|
|
3118
|
+
"original": {
|
|
3119
|
+
"attributes": {
|
|
3120
|
+
"group": "paint",
|
|
3121
|
+
"state": "active",
|
|
3122
|
+
"introduced": "1.19.0",
|
|
3123
|
+
"description": "Hovered state of color.background.accent.teal.subtlest."
|
|
3124
|
+
},
|
|
3125
|
+
"value": "T200"
|
|
3126
|
+
},
|
|
3127
|
+
"name": "color.background.accent.teal.subtlest.hovered",
|
|
3128
|
+
"path": ["color", "background", "accent", "teal", "subtlest", "hovered"],
|
|
3129
|
+
"cleanName": "color.background.accent.teal.subtlest.hovered"
|
|
3130
|
+
}, {
|
|
3131
|
+
"attributes": {
|
|
3132
|
+
"group": "paint",
|
|
3133
|
+
"state": "active",
|
|
3134
|
+
"introduced": "1.19.0",
|
|
3135
|
+
"description": "Pressed state of color.background.accent.teal.subtlest."
|
|
3136
|
+
},
|
|
3137
|
+
"value": "#00B8D9",
|
|
3138
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3139
|
+
"isSource": true,
|
|
3140
|
+
"original": {
|
|
3141
|
+
"attributes": {
|
|
3142
|
+
"group": "paint",
|
|
3143
|
+
"state": "active",
|
|
3144
|
+
"introduced": "1.19.0",
|
|
3145
|
+
"description": "Pressed state of color.background.accent.teal.subtlest."
|
|
3146
|
+
},
|
|
3147
|
+
"value": "T300"
|
|
3148
|
+
},
|
|
3149
|
+
"name": "color.background.accent.teal.subtlest.pressed",
|
|
3150
|
+
"path": ["color", "background", "accent", "teal", "subtlest", "pressed"],
|
|
3151
|
+
"cleanName": "color.background.accent.teal.subtlest.pressed"
|
|
3152
|
+
}, {
|
|
3153
|
+
"attributes": {
|
|
3154
|
+
"group": "paint",
|
|
3155
|
+
"state": "active",
|
|
3156
|
+
"introduced": "0.7.0",
|
|
3157
|
+
"description": "Use for teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3158
|
+
},
|
|
3159
|
+
"value": "#00C7E6",
|
|
3160
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3161
|
+
"isSource": true,
|
|
3162
|
+
"original": {
|
|
3163
|
+
"attributes": {
|
|
3164
|
+
"group": "paint",
|
|
3165
|
+
"state": "active",
|
|
3166
|
+
"introduced": "0.7.0",
|
|
3167
|
+
"description": "Use for teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3168
|
+
},
|
|
3169
|
+
"value": "T200"
|
|
3170
|
+
},
|
|
3171
|
+
"name": "color.background.accent.teal.subtler.[default]",
|
|
3172
|
+
"path": ["color", "background", "accent", "teal", "subtler", "[default]"],
|
|
3173
|
+
"cleanName": "color.background.accent.teal.subtler"
|
|
3174
|
+
}, {
|
|
3175
|
+
"attributes": {
|
|
3176
|
+
"group": "paint",
|
|
3177
|
+
"state": "active",
|
|
3178
|
+
"introduced": "1.19.0",
|
|
3179
|
+
"description": "Hovered state of color.background.accent.teal.subtler."
|
|
3180
|
+
},
|
|
3181
|
+
"value": "#00B8D9",
|
|
3182
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3183
|
+
"isSource": true,
|
|
3184
|
+
"original": {
|
|
3185
|
+
"attributes": {
|
|
3186
|
+
"group": "paint",
|
|
3187
|
+
"state": "active",
|
|
3188
|
+
"introduced": "1.19.0",
|
|
3189
|
+
"description": "Hovered state of color.background.accent.teal.subtler."
|
|
3190
|
+
},
|
|
3191
|
+
"value": "T300"
|
|
3192
|
+
},
|
|
3193
|
+
"name": "color.background.accent.teal.subtler.hovered",
|
|
3194
|
+
"path": ["color", "background", "accent", "teal", "subtler", "hovered"],
|
|
3195
|
+
"cleanName": "color.background.accent.teal.subtler.hovered"
|
|
3196
|
+
}, {
|
|
3197
|
+
"attributes": {
|
|
3198
|
+
"group": "paint",
|
|
3199
|
+
"state": "active",
|
|
3200
|
+
"introduced": "1.19.0",
|
|
3201
|
+
"description": "Pressed state of color.background.accent.teal.subtler."
|
|
3202
|
+
},
|
|
3203
|
+
"value": "#00A3BF",
|
|
3204
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3205
|
+
"isSource": true,
|
|
3206
|
+
"original": {
|
|
3207
|
+
"attributes": {
|
|
3208
|
+
"group": "paint",
|
|
3209
|
+
"state": "active",
|
|
3210
|
+
"introduced": "1.19.0",
|
|
3211
|
+
"description": "Pressed state of color.background.accent.teal.subtler."
|
|
3212
|
+
},
|
|
3213
|
+
"value": "T400"
|
|
3214
|
+
},
|
|
3215
|
+
"name": "color.background.accent.teal.subtler.pressed",
|
|
3216
|
+
"path": ["color", "background", "accent", "teal", "subtler", "pressed"],
|
|
3217
|
+
"cleanName": "color.background.accent.teal.subtler.pressed"
|
|
3218
|
+
}, {
|
|
3219
|
+
"attributes": {
|
|
3220
|
+
"group": "paint",
|
|
3221
|
+
"state": "active",
|
|
3222
|
+
"introduced": "0.7.0",
|
|
3223
|
+
"description": "Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3224
|
+
},
|
|
3225
|
+
"value": "#00A3BF",
|
|
3226
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3227
|
+
"isSource": true,
|
|
3228
|
+
"original": {
|
|
3229
|
+
"attributes": {
|
|
3230
|
+
"group": "paint",
|
|
3231
|
+
"state": "active",
|
|
3232
|
+
"introduced": "0.7.0",
|
|
3233
|
+
"description": "Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3234
|
+
},
|
|
3235
|
+
"value": "T400"
|
|
3236
|
+
},
|
|
3237
|
+
"name": "color.background.accent.teal.subtle.[default]",
|
|
3238
|
+
"path": ["color", "background", "accent", "teal", "subtle", "[default]"],
|
|
3239
|
+
"cleanName": "color.background.accent.teal.subtle"
|
|
3240
|
+
}, {
|
|
3241
|
+
"attributes": {
|
|
3242
|
+
"group": "paint",
|
|
3243
|
+
"state": "active",
|
|
3244
|
+
"introduced": "1.19.0",
|
|
3245
|
+
"description": "Hovered state of color.background.accent.teal.subtle."
|
|
3246
|
+
},
|
|
3247
|
+
"value": "#00B8D9",
|
|
3248
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3249
|
+
"isSource": true,
|
|
3250
|
+
"original": {
|
|
3251
|
+
"attributes": {
|
|
3252
|
+
"group": "paint",
|
|
3253
|
+
"state": "active",
|
|
3254
|
+
"introduced": "1.19.0",
|
|
3255
|
+
"description": "Hovered state of color.background.accent.teal.subtle."
|
|
3256
|
+
},
|
|
3257
|
+
"value": "T300"
|
|
3258
|
+
},
|
|
3259
|
+
"name": "color.background.accent.teal.subtle.hovered",
|
|
3260
|
+
"path": ["color", "background", "accent", "teal", "subtle", "hovered"],
|
|
3261
|
+
"cleanName": "color.background.accent.teal.subtle.hovered"
|
|
3262
|
+
}, {
|
|
3263
|
+
"attributes": {
|
|
3264
|
+
"group": "paint",
|
|
3265
|
+
"state": "active",
|
|
3266
|
+
"introduced": "1.19.0",
|
|
3267
|
+
"description": "Pressed state of color.background.accent.teal.subtle."
|
|
3268
|
+
},
|
|
3269
|
+
"value": "#00C7E6",
|
|
3270
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3271
|
+
"isSource": true,
|
|
3272
|
+
"original": {
|
|
3273
|
+
"attributes": {
|
|
3274
|
+
"group": "paint",
|
|
3275
|
+
"state": "active",
|
|
3276
|
+
"introduced": "1.19.0",
|
|
3277
|
+
"description": "Pressed state of color.background.accent.teal.subtle."
|
|
3278
|
+
},
|
|
3279
|
+
"value": "T200"
|
|
3280
|
+
},
|
|
3281
|
+
"name": "color.background.accent.teal.subtle.pressed",
|
|
3282
|
+
"path": ["color", "background", "accent", "teal", "subtle", "pressed"],
|
|
3283
|
+
"cleanName": "color.background.accent.teal.subtle.pressed"
|
|
3284
|
+
}, {
|
|
3285
|
+
"attributes": {
|
|
3286
|
+
"group": "paint",
|
|
3287
|
+
"state": "active",
|
|
3288
|
+
"introduced": "0.7.0",
|
|
3289
|
+
"description": "Use for teal backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
3290
|
+
},
|
|
3291
|
+
"value": "#00A3BF",
|
|
3292
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3293
|
+
"isSource": true,
|
|
3294
|
+
"original": {
|
|
3295
|
+
"attributes": {
|
|
3296
|
+
"group": "paint",
|
|
3297
|
+
"state": "active",
|
|
3298
|
+
"introduced": "0.7.0",
|
|
3299
|
+
"description": "Use for teal backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
3300
|
+
},
|
|
3301
|
+
"value": "T400"
|
|
3302
|
+
},
|
|
3303
|
+
"name": "color.background.accent.teal.bolder.[default]",
|
|
3304
|
+
"path": ["color", "background", "accent", "teal", "bolder", "[default]"],
|
|
3305
|
+
"cleanName": "color.background.accent.teal.bolder"
|
|
3306
|
+
}, {
|
|
3307
|
+
"attributes": {
|
|
3308
|
+
"group": "paint",
|
|
3309
|
+
"state": "active",
|
|
3310
|
+
"introduced": "1.19.0",
|
|
3311
|
+
"description": "Hovered state of color.background.accent.teal.bolder."
|
|
3312
|
+
},
|
|
3313
|
+
"value": "#00B8D9",
|
|
3314
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3315
|
+
"isSource": true,
|
|
3316
|
+
"original": {
|
|
3317
|
+
"attributes": {
|
|
3318
|
+
"group": "paint",
|
|
3319
|
+
"state": "active",
|
|
3320
|
+
"introduced": "1.19.0",
|
|
3321
|
+
"description": "Hovered state of color.background.accent.teal.bolder."
|
|
3322
|
+
},
|
|
3323
|
+
"value": "T300"
|
|
3324
|
+
},
|
|
3325
|
+
"name": "color.background.accent.teal.bolder.hovered",
|
|
3326
|
+
"path": ["color", "background", "accent", "teal", "bolder", "hovered"],
|
|
3327
|
+
"cleanName": "color.background.accent.teal.bolder.hovered"
|
|
3328
|
+
}, {
|
|
3329
|
+
"attributes": {
|
|
3330
|
+
"group": "paint",
|
|
3331
|
+
"state": "active",
|
|
3332
|
+
"introduced": "1.19.0",
|
|
3333
|
+
"description": "Pressed state of color.background.accent.teal.bolder."
|
|
3334
|
+
},
|
|
3335
|
+
"value": "#00C7E6",
|
|
3336
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3337
|
+
"isSource": true,
|
|
3338
|
+
"original": {
|
|
3339
|
+
"attributes": {
|
|
3340
|
+
"group": "paint",
|
|
3341
|
+
"state": "active",
|
|
3342
|
+
"introduced": "1.19.0",
|
|
3343
|
+
"description": "Pressed state of color.background.accent.teal.bolder."
|
|
3344
|
+
},
|
|
3345
|
+
"value": "T200"
|
|
3346
|
+
},
|
|
3347
|
+
"name": "color.background.accent.teal.bolder.pressed",
|
|
3348
|
+
"path": ["color", "background", "accent", "teal", "bolder", "pressed"],
|
|
3349
|
+
"cleanName": "color.background.accent.teal.bolder.pressed"
|
|
3350
|
+
}, {
|
|
3351
|
+
"attributes": {
|
|
3352
|
+
"group": "paint",
|
|
3353
|
+
"state": "active",
|
|
3354
|
+
"introduced": "0.7.0",
|
|
3355
|
+
"description": "Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
3356
|
+
},
|
|
3357
|
+
"value": "#4C9AFF",
|
|
3358
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3359
|
+
"isSource": true,
|
|
3360
|
+
"original": {
|
|
3361
|
+
"attributes": {
|
|
3362
|
+
"group": "paint",
|
|
3363
|
+
"state": "active",
|
|
3364
|
+
"introduced": "0.7.0",
|
|
3365
|
+
"description": "Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
3366
|
+
},
|
|
3367
|
+
"value": "B100"
|
|
3368
|
+
},
|
|
3369
|
+
"name": "color.background.accent.blue.subtlest.[default]",
|
|
3370
|
+
"path": ["color", "background", "accent", "blue", "subtlest", "[default]"],
|
|
3371
|
+
"cleanName": "color.background.accent.blue.subtlest"
|
|
3372
|
+
}, {
|
|
3373
|
+
"attributes": {
|
|
3374
|
+
"group": "paint",
|
|
3375
|
+
"state": "active",
|
|
3376
|
+
"introduced": "1.19.0",
|
|
3377
|
+
"description": "Hovered state of color.background.accent.blue.subtlest."
|
|
3378
|
+
},
|
|
3379
|
+
"value": "#2684FF",
|
|
3380
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3381
|
+
"isSource": true,
|
|
3382
|
+
"original": {
|
|
3383
|
+
"attributes": {
|
|
3384
|
+
"group": "paint",
|
|
3385
|
+
"state": "active",
|
|
3386
|
+
"introduced": "1.19.0",
|
|
3387
|
+
"description": "Hovered state of color.background.accent.blue.subtlest."
|
|
3388
|
+
},
|
|
3389
|
+
"value": "B200"
|
|
3390
|
+
},
|
|
3391
|
+
"name": "color.background.accent.blue.subtlest.hovered",
|
|
3392
|
+
"path": ["color", "background", "accent", "blue", "subtlest", "hovered"],
|
|
3393
|
+
"cleanName": "color.background.accent.blue.subtlest.hovered"
|
|
3394
|
+
}, {
|
|
3395
|
+
"attributes": {
|
|
3396
|
+
"group": "paint",
|
|
3397
|
+
"state": "active",
|
|
3398
|
+
"introduced": "1.19.0",
|
|
3399
|
+
"description": "Pressed state of color.background.accent.blue.subtlest."
|
|
3400
|
+
},
|
|
3401
|
+
"value": "#0065FF",
|
|
3402
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3403
|
+
"isSource": true,
|
|
3404
|
+
"original": {
|
|
3405
|
+
"attributes": {
|
|
3406
|
+
"group": "paint",
|
|
3407
|
+
"state": "active",
|
|
3408
|
+
"introduced": "1.19.0",
|
|
3409
|
+
"description": "Pressed state of color.background.accent.blue.subtlest."
|
|
3410
|
+
},
|
|
3411
|
+
"value": "B300"
|
|
3412
|
+
},
|
|
3413
|
+
"name": "color.background.accent.blue.subtlest.pressed",
|
|
3414
|
+
"path": ["color", "background", "accent", "blue", "subtlest", "pressed"],
|
|
3415
|
+
"cleanName": "color.background.accent.blue.subtlest.pressed"
|
|
3416
|
+
}, {
|
|
3417
|
+
"attributes": {
|
|
3418
|
+
"group": "paint",
|
|
3419
|
+
"state": "active",
|
|
3420
|
+
"introduced": "0.7.0",
|
|
3421
|
+
"description": "Use for blue backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3422
|
+
},
|
|
3423
|
+
"value": "#2684FF",
|
|
3424
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3425
|
+
"isSource": true,
|
|
3426
|
+
"original": {
|
|
3427
|
+
"attributes": {
|
|
3428
|
+
"group": "paint",
|
|
3429
|
+
"state": "active",
|
|
3430
|
+
"introduced": "0.7.0",
|
|
3431
|
+
"description": "Use for blue backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3432
|
+
},
|
|
3433
|
+
"value": "B200"
|
|
3434
|
+
},
|
|
3435
|
+
"name": "color.background.accent.blue.subtler.[default]",
|
|
3436
|
+
"path": ["color", "background", "accent", "blue", "subtler", "[default]"],
|
|
3437
|
+
"cleanName": "color.background.accent.blue.subtler"
|
|
3438
|
+
}, {
|
|
3439
|
+
"attributes": {
|
|
3440
|
+
"group": "paint",
|
|
3441
|
+
"state": "active",
|
|
3442
|
+
"introduced": "1.19.0",
|
|
3443
|
+
"description": "Hovered state of color.background.accent.blue.subtler."
|
|
3444
|
+
},
|
|
3445
|
+
"value": "#0065FF",
|
|
3446
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3447
|
+
"isSource": true,
|
|
3448
|
+
"original": {
|
|
3449
|
+
"attributes": {
|
|
3450
|
+
"group": "paint",
|
|
3451
|
+
"state": "active",
|
|
3452
|
+
"introduced": "1.19.0",
|
|
3453
|
+
"description": "Hovered state of color.background.accent.blue.subtler."
|
|
3454
|
+
},
|
|
3455
|
+
"value": "B300"
|
|
3456
|
+
},
|
|
3457
|
+
"name": "color.background.accent.blue.subtler.hovered",
|
|
3458
|
+
"path": ["color", "background", "accent", "blue", "subtler", "hovered"],
|
|
3459
|
+
"cleanName": "color.background.accent.blue.subtler.hovered"
|
|
3460
|
+
}, {
|
|
3461
|
+
"attributes": {
|
|
3462
|
+
"group": "paint",
|
|
3463
|
+
"state": "active",
|
|
3464
|
+
"introduced": "1.19.0",
|
|
3465
|
+
"description": "Pressed state of color.background.accent.blue.subtler."
|
|
3466
|
+
},
|
|
3467
|
+
"value": "#0052CC",
|
|
3468
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3469
|
+
"isSource": true,
|
|
3470
|
+
"original": {
|
|
3471
|
+
"attributes": {
|
|
3472
|
+
"group": "paint",
|
|
3473
|
+
"state": "active",
|
|
3474
|
+
"introduced": "1.19.0",
|
|
3475
|
+
"description": "Pressed state of color.background.accent.blue.subtler."
|
|
3476
|
+
},
|
|
3477
|
+
"value": "B400"
|
|
3478
|
+
},
|
|
3479
|
+
"name": "color.background.accent.blue.subtler.pressed",
|
|
3480
|
+
"path": ["color", "background", "accent", "blue", "subtler", "pressed"],
|
|
3481
|
+
"cleanName": "color.background.accent.blue.subtler.pressed"
|
|
3482
|
+
}, {
|
|
3483
|
+
"attributes": {
|
|
3484
|
+
"group": "paint",
|
|
3485
|
+
"state": "active",
|
|
3486
|
+
"introduced": "0.7.0",
|
|
3487
|
+
"description": "Use for vibrant blue backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3488
|
+
},
|
|
3489
|
+
"value": "#0052CC",
|
|
3490
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3491
|
+
"isSource": true,
|
|
3492
|
+
"original": {
|
|
3493
|
+
"attributes": {
|
|
3494
|
+
"group": "paint",
|
|
3495
|
+
"state": "active",
|
|
3496
|
+
"introduced": "0.7.0",
|
|
3497
|
+
"description": "Use for vibrant blue backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3498
|
+
},
|
|
3499
|
+
"value": "B400"
|
|
3500
|
+
},
|
|
3501
|
+
"name": "color.background.accent.blue.subtle.[default]",
|
|
3502
|
+
"path": ["color", "background", "accent", "blue", "subtle", "[default]"],
|
|
3503
|
+
"cleanName": "color.background.accent.blue.subtle"
|
|
3504
|
+
}, {
|
|
3505
|
+
"attributes": {
|
|
3506
|
+
"group": "paint",
|
|
3507
|
+
"state": "active",
|
|
3508
|
+
"introduced": "1.19.0",
|
|
3509
|
+
"description": "Hovered state of color.background.accent.blue.subtle."
|
|
3510
|
+
},
|
|
3511
|
+
"value": "#0065FF",
|
|
3512
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3513
|
+
"isSource": true,
|
|
3514
|
+
"original": {
|
|
3515
|
+
"attributes": {
|
|
3516
|
+
"group": "paint",
|
|
3517
|
+
"state": "active",
|
|
3518
|
+
"introduced": "1.19.0",
|
|
3519
|
+
"description": "Hovered state of color.background.accent.blue.subtle."
|
|
3520
|
+
},
|
|
3521
|
+
"value": "B300"
|
|
3522
|
+
},
|
|
3523
|
+
"name": "color.background.accent.blue.subtle.hovered",
|
|
3524
|
+
"path": ["color", "background", "accent", "blue", "subtle", "hovered"],
|
|
3525
|
+
"cleanName": "color.background.accent.blue.subtle.hovered"
|
|
3526
|
+
}, {
|
|
3527
|
+
"attributes": {
|
|
3528
|
+
"group": "paint",
|
|
3529
|
+
"state": "active",
|
|
3530
|
+
"introduced": "1.19.0",
|
|
3531
|
+
"description": "Pressed state of color.background.accent.blue.subtle."
|
|
3532
|
+
},
|
|
3533
|
+
"value": "#2684FF",
|
|
3534
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3535
|
+
"isSource": true,
|
|
3536
|
+
"original": {
|
|
3537
|
+
"attributes": {
|
|
3538
|
+
"group": "paint",
|
|
3539
|
+
"state": "active",
|
|
3540
|
+
"introduced": "1.19.0",
|
|
3541
|
+
"description": "Pressed state of color.background.accent.blue.subtle."
|
|
3542
|
+
},
|
|
3543
|
+
"value": "B200"
|
|
3544
|
+
},
|
|
3545
|
+
"name": "color.background.accent.blue.subtle.pressed",
|
|
3546
|
+
"path": ["color", "background", "accent", "blue", "subtle", "pressed"],
|
|
3547
|
+
"cleanName": "color.background.accent.blue.subtle.pressed"
|
|
3548
|
+
}, {
|
|
3549
|
+
"attributes": {
|
|
3550
|
+
"group": "paint",
|
|
3551
|
+
"state": "active",
|
|
3552
|
+
"introduced": "0.7.0",
|
|
3553
|
+
"description": "Use for blue backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
3554
|
+
},
|
|
3555
|
+
"value": "#0052CC",
|
|
3556
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3557
|
+
"isSource": true,
|
|
3558
|
+
"original": {
|
|
3559
|
+
"attributes": {
|
|
3560
|
+
"group": "paint",
|
|
3561
|
+
"state": "active",
|
|
3562
|
+
"introduced": "0.7.0",
|
|
3563
|
+
"description": "Use for blue backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
3564
|
+
},
|
|
3565
|
+
"value": "B400"
|
|
3566
|
+
},
|
|
3567
|
+
"name": "color.background.accent.blue.bolder.[default]",
|
|
3568
|
+
"path": ["color", "background", "accent", "blue", "bolder", "[default]"],
|
|
3569
|
+
"cleanName": "color.background.accent.blue.bolder"
|
|
3570
|
+
}, {
|
|
3571
|
+
"attributes": {
|
|
3572
|
+
"group": "paint",
|
|
3573
|
+
"state": "active",
|
|
3574
|
+
"introduced": "1.19.0",
|
|
3575
|
+
"description": "Hovered state of color.background.accent.blue.bolder."
|
|
3576
|
+
},
|
|
3577
|
+
"value": "#0065FF",
|
|
3578
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3579
|
+
"isSource": true,
|
|
3580
|
+
"original": {
|
|
3581
|
+
"attributes": {
|
|
3582
|
+
"group": "paint",
|
|
3583
|
+
"state": "active",
|
|
3584
|
+
"introduced": "1.19.0",
|
|
3585
|
+
"description": "Hovered state of color.background.accent.blue.bolder."
|
|
3586
|
+
},
|
|
3587
|
+
"value": "B300"
|
|
3588
|
+
},
|
|
3589
|
+
"name": "color.background.accent.blue.bolder.hovered",
|
|
3590
|
+
"path": ["color", "background", "accent", "blue", "bolder", "hovered"],
|
|
3591
|
+
"cleanName": "color.background.accent.blue.bolder.hovered"
|
|
3592
|
+
}, {
|
|
3593
|
+
"attributes": {
|
|
3594
|
+
"group": "paint",
|
|
3595
|
+
"state": "active",
|
|
3596
|
+
"introduced": "1.19.0",
|
|
3597
|
+
"description": "Pressed state of color.background.accent.blue.bolder."
|
|
3598
|
+
},
|
|
3599
|
+
"value": "#2684FF",
|
|
3600
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3601
|
+
"isSource": true,
|
|
3602
|
+
"original": {
|
|
3603
|
+
"attributes": {
|
|
3604
|
+
"group": "paint",
|
|
3605
|
+
"state": "active",
|
|
3606
|
+
"introduced": "1.19.0",
|
|
3607
|
+
"description": "Pressed state of color.background.accent.blue.bolder."
|
|
3608
|
+
},
|
|
3609
|
+
"value": "B200"
|
|
3610
|
+
},
|
|
3611
|
+
"name": "color.background.accent.blue.bolder.pressed",
|
|
3612
|
+
"path": ["color", "background", "accent", "blue", "bolder", "pressed"],
|
|
3613
|
+
"cleanName": "color.background.accent.blue.bolder.pressed"
|
|
3614
|
+
}, {
|
|
3615
|
+
"attributes": {
|
|
3616
|
+
"group": "paint",
|
|
3617
|
+
"state": "active",
|
|
3618
|
+
"introduced": "0.7.0",
|
|
3619
|
+
"description": "Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
3620
|
+
},
|
|
3621
|
+
"value": "#998DD9",
|
|
3622
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3623
|
+
"isSource": true,
|
|
3624
|
+
"original": {
|
|
3625
|
+
"attributes": {
|
|
3626
|
+
"group": "paint",
|
|
3627
|
+
"state": "active",
|
|
3628
|
+
"introduced": "0.7.0",
|
|
3629
|
+
"description": "Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
3630
|
+
},
|
|
3631
|
+
"value": "P100"
|
|
3632
|
+
},
|
|
3633
|
+
"name": "color.background.accent.purple.subtlest.[default]",
|
|
3634
|
+
"path": ["color", "background", "accent", "purple", "subtlest", "[default]"],
|
|
3635
|
+
"cleanName": "color.background.accent.purple.subtlest"
|
|
3636
|
+
}, {
|
|
3637
|
+
"attributes": {
|
|
3638
|
+
"group": "paint",
|
|
3639
|
+
"state": "active",
|
|
3640
|
+
"introduced": "1.19.0",
|
|
3641
|
+
"description": "Hovered state of color.background.accent.purple.subtlest."
|
|
3642
|
+
},
|
|
3643
|
+
"value": "#8777D9",
|
|
3644
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3645
|
+
"isSource": true,
|
|
3646
|
+
"original": {
|
|
3647
|
+
"attributes": {
|
|
3648
|
+
"group": "paint",
|
|
3649
|
+
"state": "active",
|
|
3650
|
+
"introduced": "1.19.0",
|
|
3651
|
+
"description": "Hovered state of color.background.accent.purple.subtlest."
|
|
3652
|
+
},
|
|
3653
|
+
"value": "P200"
|
|
3654
|
+
},
|
|
3655
|
+
"name": "color.background.accent.purple.subtlest.hovered",
|
|
3656
|
+
"path": ["color", "background", "accent", "purple", "subtlest", "hovered"],
|
|
3657
|
+
"cleanName": "color.background.accent.purple.subtlest.hovered"
|
|
3658
|
+
}, {
|
|
3659
|
+
"attributes": {
|
|
3660
|
+
"group": "paint",
|
|
3661
|
+
"state": "active",
|
|
3662
|
+
"introduced": "1.19.0",
|
|
3663
|
+
"description": "Pressed state of color.background.accent.purple.subtlest."
|
|
3664
|
+
},
|
|
3665
|
+
"value": "#6554C0",
|
|
3666
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3667
|
+
"isSource": true,
|
|
3668
|
+
"original": {
|
|
3669
|
+
"attributes": {
|
|
3670
|
+
"group": "paint",
|
|
3671
|
+
"state": "active",
|
|
3672
|
+
"introduced": "1.19.0",
|
|
3673
|
+
"description": "Pressed state of color.background.accent.purple.subtlest."
|
|
3674
|
+
},
|
|
3675
|
+
"value": "P300"
|
|
3676
|
+
},
|
|
3677
|
+
"name": "color.background.accent.purple.subtlest.pressed",
|
|
3678
|
+
"path": ["color", "background", "accent", "purple", "subtlest", "pressed"],
|
|
3679
|
+
"cleanName": "color.background.accent.purple.subtlest.pressed"
|
|
3680
|
+
}, {
|
|
3681
|
+
"attributes": {
|
|
3682
|
+
"group": "paint",
|
|
3683
|
+
"state": "active",
|
|
3684
|
+
"introduced": "0.7.0",
|
|
3685
|
+
"description": "Use for purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3686
|
+
},
|
|
3687
|
+
"value": "#8777D9",
|
|
3688
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3689
|
+
"isSource": true,
|
|
3690
|
+
"original": {
|
|
3691
|
+
"attributes": {
|
|
3692
|
+
"group": "paint",
|
|
3693
|
+
"state": "active",
|
|
3694
|
+
"introduced": "0.7.0",
|
|
3695
|
+
"description": "Use for purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3696
|
+
},
|
|
3697
|
+
"value": "P200"
|
|
3698
|
+
},
|
|
3699
|
+
"name": "color.background.accent.purple.subtler.[default]",
|
|
3700
|
+
"path": ["color", "background", "accent", "purple", "subtler", "[default]"],
|
|
3701
|
+
"cleanName": "color.background.accent.purple.subtler"
|
|
3702
|
+
}, {
|
|
3703
|
+
"attributes": {
|
|
3704
|
+
"group": "paint",
|
|
3705
|
+
"state": "active",
|
|
3706
|
+
"introduced": "1.19.0",
|
|
3707
|
+
"description": "Hovered state of color.background.accent.purple.subtler."
|
|
3708
|
+
},
|
|
3709
|
+
"value": "#6554C0",
|
|
3710
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3711
|
+
"isSource": true,
|
|
3712
|
+
"original": {
|
|
3713
|
+
"attributes": {
|
|
3714
|
+
"group": "paint",
|
|
3715
|
+
"state": "active",
|
|
3716
|
+
"introduced": "1.19.0",
|
|
3717
|
+
"description": "Hovered state of color.background.accent.purple.subtler."
|
|
3718
|
+
},
|
|
3719
|
+
"value": "P300"
|
|
3720
|
+
},
|
|
3721
|
+
"name": "color.background.accent.purple.subtler.hovered",
|
|
3722
|
+
"path": ["color", "background", "accent", "purple", "subtler", "hovered"],
|
|
3723
|
+
"cleanName": "color.background.accent.purple.subtler.hovered"
|
|
3724
|
+
}, {
|
|
3725
|
+
"attributes": {
|
|
3726
|
+
"group": "paint",
|
|
3727
|
+
"state": "active",
|
|
3728
|
+
"introduced": "1.19.0",
|
|
3729
|
+
"description": "Pressed state of color.background.accent.purple.subtler."
|
|
3730
|
+
},
|
|
3731
|
+
"value": "#5243AA",
|
|
3732
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3733
|
+
"isSource": true,
|
|
3734
|
+
"original": {
|
|
3735
|
+
"attributes": {
|
|
3736
|
+
"group": "paint",
|
|
3737
|
+
"state": "active",
|
|
3738
|
+
"introduced": "1.19.0",
|
|
3739
|
+
"description": "Pressed state of color.background.accent.purple.subtler."
|
|
3740
|
+
},
|
|
3741
|
+
"value": "P400"
|
|
3742
|
+
},
|
|
3743
|
+
"name": "color.background.accent.purple.subtler.pressed",
|
|
3744
|
+
"path": ["color", "background", "accent", "purple", "subtler", "pressed"],
|
|
3745
|
+
"cleanName": "color.background.accent.purple.subtler.pressed"
|
|
3746
|
+
}, {
|
|
3747
|
+
"attributes": {
|
|
3748
|
+
"group": "paint",
|
|
3749
|
+
"state": "active",
|
|
3750
|
+
"introduced": "0.7.0",
|
|
3751
|
+
"description": "Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
3752
|
+
},
|
|
3753
|
+
"value": "#5243AA",
|
|
3754
|
+
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
3755
|
+
"isSource": true,
|
|
3756
|
+
"original": {
|
|
3757
|
+
"attributes": {
|
|
3758
|
+
"group": "paint",
|
|
3759
|
+
"state": "active",
|
|
3760
|
+
"introduced": "0.7.0",
|
|
3761
|
+
"description": "Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2002
3762
|
},
|
|
2003
|
-
"value": "
|
|
3763
|
+
"value": "P400"
|
|
2004
3764
|
},
|
|
2005
|
-
"name": "color.background.accent.
|
|
2006
|
-
"path": ["color", "background", "accent", "
|
|
2007
|
-
"cleanName": "color.background.accent.
|
|
3765
|
+
"name": "color.background.accent.purple.subtle.[default]",
|
|
3766
|
+
"path": ["color", "background", "accent", "purple", "subtle", "[default]"],
|
|
3767
|
+
"cleanName": "color.background.accent.purple.subtle"
|
|
2008
3768
|
}, {
|
|
2009
3769
|
"attributes": {
|
|
2010
3770
|
"group": "paint",
|
|
2011
3771
|
"state": "active",
|
|
2012
|
-
"introduced": "
|
|
2013
|
-
"description": "
|
|
3772
|
+
"introduced": "1.19.0",
|
|
3773
|
+
"description": "Hovered state of color.background.accent.purple.subtle."
|
|
2014
3774
|
},
|
|
2015
|
-
"value": "#
|
|
3775
|
+
"value": "#6554C0",
|
|
2016
3776
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2017
3777
|
"isSource": true,
|
|
2018
3778
|
"original": {
|
|
2019
3779
|
"attributes": {
|
|
2020
3780
|
"group": "paint",
|
|
2021
3781
|
"state": "active",
|
|
2022
|
-
"introduced": "
|
|
2023
|
-
"description": "
|
|
3782
|
+
"introduced": "1.19.0",
|
|
3783
|
+
"description": "Hovered state of color.background.accent.purple.subtle."
|
|
2024
3784
|
},
|
|
2025
|
-
"value": "
|
|
3785
|
+
"value": "P300"
|
|
2026
3786
|
},
|
|
2027
|
-
"name": "color.background.accent.
|
|
2028
|
-
"path": ["color", "background", "accent", "
|
|
2029
|
-
"cleanName": "color.background.accent.
|
|
3787
|
+
"name": "color.background.accent.purple.subtle.hovered",
|
|
3788
|
+
"path": ["color", "background", "accent", "purple", "subtle", "hovered"],
|
|
3789
|
+
"cleanName": "color.background.accent.purple.subtle.hovered"
|
|
2030
3790
|
}, {
|
|
2031
3791
|
"attributes": {
|
|
2032
3792
|
"group": "paint",
|
|
2033
3793
|
"state": "active",
|
|
2034
|
-
"introduced": "
|
|
2035
|
-
"description": "
|
|
3794
|
+
"introduced": "1.19.0",
|
|
3795
|
+
"description": "Pressed state of color.background.accent.purple.subtle."
|
|
2036
3796
|
},
|
|
2037
|
-
"value": "#
|
|
3797
|
+
"value": "#8777D9",
|
|
2038
3798
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2039
3799
|
"isSource": true,
|
|
2040
3800
|
"original": {
|
|
2041
3801
|
"attributes": {
|
|
2042
3802
|
"group": "paint",
|
|
2043
3803
|
"state": "active",
|
|
2044
|
-
"introduced": "
|
|
2045
|
-
"description": "
|
|
3804
|
+
"introduced": "1.19.0",
|
|
3805
|
+
"description": "Pressed state of color.background.accent.purple.subtle."
|
|
2046
3806
|
},
|
|
2047
|
-
"value": "
|
|
3807
|
+
"value": "P200"
|
|
2048
3808
|
},
|
|
2049
|
-
"name": "color.background.accent.
|
|
2050
|
-
"path": ["color", "background", "accent", "
|
|
2051
|
-
"cleanName": "color.background.accent.
|
|
3809
|
+
"name": "color.background.accent.purple.subtle.pressed",
|
|
3810
|
+
"path": ["color", "background", "accent", "purple", "subtle", "pressed"],
|
|
3811
|
+
"cleanName": "color.background.accent.purple.subtle.pressed"
|
|
2052
3812
|
}, {
|
|
2053
3813
|
"attributes": {
|
|
2054
3814
|
"group": "paint",
|
|
2055
3815
|
"state": "active",
|
|
2056
3816
|
"introduced": "0.7.0",
|
|
2057
|
-
"description": "Use for
|
|
3817
|
+
"description": "Use for purple backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2058
3818
|
},
|
|
2059
|
-
"value": "#
|
|
3819
|
+
"value": "#5243AA",
|
|
2060
3820
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2061
3821
|
"isSource": true,
|
|
2062
3822
|
"original": {
|
|
@@ -2064,65 +3824,65 @@ var tokens = [{
|
|
|
2064
3824
|
"group": "paint",
|
|
2065
3825
|
"state": "active",
|
|
2066
3826
|
"introduced": "0.7.0",
|
|
2067
|
-
"description": "Use for
|
|
3827
|
+
"description": "Use for purple backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2068
3828
|
},
|
|
2069
|
-
"value": "
|
|
3829
|
+
"value": "P400"
|
|
2070
3830
|
},
|
|
2071
|
-
"name": "color.background.accent.
|
|
2072
|
-
"path": ["color", "background", "accent", "
|
|
2073
|
-
"cleanName": "color.background.accent.
|
|
3831
|
+
"name": "color.background.accent.purple.bolder.[default]",
|
|
3832
|
+
"path": ["color", "background", "accent", "purple", "bolder", "[default]"],
|
|
3833
|
+
"cleanName": "color.background.accent.purple.bolder"
|
|
2074
3834
|
}, {
|
|
2075
3835
|
"attributes": {
|
|
2076
3836
|
"group": "paint",
|
|
2077
3837
|
"state": "active",
|
|
2078
|
-
"introduced": "
|
|
2079
|
-
"description": "
|
|
3838
|
+
"introduced": "1.19.0",
|
|
3839
|
+
"description": "Hovered state of color.background.accent.purple.bolder."
|
|
2080
3840
|
},
|
|
2081
|
-
"value": "#
|
|
3841
|
+
"value": "#6554C0",
|
|
2082
3842
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2083
3843
|
"isSource": true,
|
|
2084
3844
|
"original": {
|
|
2085
3845
|
"attributes": {
|
|
2086
3846
|
"group": "paint",
|
|
2087
3847
|
"state": "active",
|
|
2088
|
-
"introduced": "
|
|
2089
|
-
"description": "
|
|
3848
|
+
"introduced": "1.19.0",
|
|
3849
|
+
"description": "Hovered state of color.background.accent.purple.bolder."
|
|
2090
3850
|
},
|
|
2091
|
-
"value": "
|
|
3851
|
+
"value": "P300"
|
|
2092
3852
|
},
|
|
2093
|
-
"name": "color.background.accent.
|
|
2094
|
-
"path": ["color", "background", "accent", "
|
|
2095
|
-
"cleanName": "color.background.accent.
|
|
3853
|
+
"name": "color.background.accent.purple.bolder.hovered",
|
|
3854
|
+
"path": ["color", "background", "accent", "purple", "bolder", "hovered"],
|
|
3855
|
+
"cleanName": "color.background.accent.purple.bolder.hovered"
|
|
2096
3856
|
}, {
|
|
2097
3857
|
"attributes": {
|
|
2098
3858
|
"group": "paint",
|
|
2099
3859
|
"state": "active",
|
|
2100
|
-
"introduced": "
|
|
2101
|
-
"description": "
|
|
3860
|
+
"introduced": "1.19.0",
|
|
3861
|
+
"description": "Pressed state of color.background.accent.purple.bolder."
|
|
2102
3862
|
},
|
|
2103
|
-
"value": "#
|
|
3863
|
+
"value": "#8777D9",
|
|
2104
3864
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2105
3865
|
"isSource": true,
|
|
2106
3866
|
"original": {
|
|
2107
3867
|
"attributes": {
|
|
2108
3868
|
"group": "paint",
|
|
2109
3869
|
"state": "active",
|
|
2110
|
-
"introduced": "
|
|
2111
|
-
"description": "
|
|
3870
|
+
"introduced": "1.19.0",
|
|
3871
|
+
"description": "Pressed state of color.background.accent.purple.bolder."
|
|
2112
3872
|
},
|
|
2113
|
-
"value": "
|
|
3873
|
+
"value": "P200"
|
|
2114
3874
|
},
|
|
2115
|
-
"name": "color.background.accent.
|
|
2116
|
-
"path": ["color", "background", "accent", "
|
|
2117
|
-
"cleanName": "color.background.accent.
|
|
3875
|
+
"name": "color.background.accent.purple.bolder.pressed",
|
|
3876
|
+
"path": ["color", "background", "accent", "purple", "bolder", "pressed"],
|
|
3877
|
+
"cleanName": "color.background.accent.purple.bolder.pressed"
|
|
2118
3878
|
}, {
|
|
2119
3879
|
"attributes": {
|
|
2120
3880
|
"group": "paint",
|
|
2121
3881
|
"state": "active",
|
|
2122
3882
|
"introduced": "0.7.0",
|
|
2123
|
-
"description": "Use for
|
|
3883
|
+
"description": "Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2124
3884
|
},
|
|
2125
|
-
"value": "#
|
|
3885
|
+
"value": "#FFECF8",
|
|
2126
3886
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2127
3887
|
"isSource": true,
|
|
2128
3888
|
"original": {
|
|
@@ -2130,65 +3890,65 @@ var tokens = [{
|
|
|
2130
3890
|
"group": "paint",
|
|
2131
3891
|
"state": "active",
|
|
2132
3892
|
"introduced": "0.7.0",
|
|
2133
|
-
"description": "Use for
|
|
3893
|
+
"description": "Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2134
3894
|
},
|
|
2135
|
-
"value": "
|
|
3895
|
+
"value": "#FFECF8"
|
|
2136
3896
|
},
|
|
2137
|
-
"name": "color.background.accent.
|
|
2138
|
-
"path": ["color", "background", "accent", "
|
|
2139
|
-
"cleanName": "color.background.accent.
|
|
3897
|
+
"name": "color.background.accent.magenta.subtlest.[default]",
|
|
3898
|
+
"path": ["color", "background", "accent", "magenta", "subtlest", "[default]"],
|
|
3899
|
+
"cleanName": "color.background.accent.magenta.subtlest"
|
|
2140
3900
|
}, {
|
|
2141
3901
|
"attributes": {
|
|
2142
3902
|
"group": "paint",
|
|
2143
3903
|
"state": "active",
|
|
2144
|
-
"introduced": "
|
|
2145
|
-
"description": "
|
|
3904
|
+
"introduced": "1.19.0",
|
|
3905
|
+
"description": "Hovered state of color.background.accent.magenta.subtlest."
|
|
2146
3906
|
},
|
|
2147
|
-
"value": "#
|
|
3907
|
+
"value": "#FDD0EC",
|
|
2148
3908
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2149
3909
|
"isSource": true,
|
|
2150
3910
|
"original": {
|
|
2151
3911
|
"attributes": {
|
|
2152
3912
|
"group": "paint",
|
|
2153
3913
|
"state": "active",
|
|
2154
|
-
"introduced": "
|
|
2155
|
-
"description": "
|
|
3914
|
+
"introduced": "1.19.0",
|
|
3915
|
+
"description": "Hovered state of color.background.accent.magenta.subtlest."
|
|
2156
3916
|
},
|
|
2157
|
-
"value": "
|
|
3917
|
+
"value": "#FDD0EC"
|
|
2158
3918
|
},
|
|
2159
|
-
"name": "color.background.accent.
|
|
2160
|
-
"path": ["color", "background", "accent", "
|
|
2161
|
-
"cleanName": "color.background.accent.
|
|
3919
|
+
"name": "color.background.accent.magenta.subtlest.hovered",
|
|
3920
|
+
"path": ["color", "background", "accent", "magenta", "subtlest", "hovered"],
|
|
3921
|
+
"cleanName": "color.background.accent.magenta.subtlest.hovered"
|
|
2162
3922
|
}, {
|
|
2163
3923
|
"attributes": {
|
|
2164
3924
|
"group": "paint",
|
|
2165
3925
|
"state": "active",
|
|
2166
|
-
"introduced": "
|
|
2167
|
-
"description": "
|
|
3926
|
+
"introduced": "1.19.0",
|
|
3927
|
+
"description": "Pressed state of color.background.accent.magenta.subtlest."
|
|
2168
3928
|
},
|
|
2169
|
-
"value": "#
|
|
3929
|
+
"value": "#F797D2",
|
|
2170
3930
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2171
3931
|
"isSource": true,
|
|
2172
3932
|
"original": {
|
|
2173
3933
|
"attributes": {
|
|
2174
3934
|
"group": "paint",
|
|
2175
3935
|
"state": "active",
|
|
2176
|
-
"introduced": "
|
|
2177
|
-
"description": "
|
|
3936
|
+
"introduced": "1.19.0",
|
|
3937
|
+
"description": "Pressed state of color.background.accent.magenta.subtlest."
|
|
2178
3938
|
},
|
|
2179
|
-
"value": "
|
|
3939
|
+
"value": "#F797D2"
|
|
2180
3940
|
},
|
|
2181
|
-
"name": "color.background.accent.
|
|
2182
|
-
"path": ["color", "background", "accent", "
|
|
2183
|
-
"cleanName": "color.background.accent.
|
|
3941
|
+
"name": "color.background.accent.magenta.subtlest.pressed",
|
|
3942
|
+
"path": ["color", "background", "accent", "magenta", "subtlest", "pressed"],
|
|
3943
|
+
"cleanName": "color.background.accent.magenta.subtlest.pressed"
|
|
2184
3944
|
}, {
|
|
2185
3945
|
"attributes": {
|
|
2186
3946
|
"group": "paint",
|
|
2187
3947
|
"state": "active",
|
|
2188
3948
|
"introduced": "0.7.0",
|
|
2189
|
-
"description": "Use for
|
|
3949
|
+
"description": "Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2190
3950
|
},
|
|
2191
|
-
"value": "#
|
|
3951
|
+
"value": "#FDD0EC",
|
|
2192
3952
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2193
3953
|
"isSource": true,
|
|
2194
3954
|
"original": {
|
|
@@ -2196,65 +3956,65 @@ var tokens = [{
|
|
|
2196
3956
|
"group": "paint",
|
|
2197
3957
|
"state": "active",
|
|
2198
3958
|
"introduced": "0.7.0",
|
|
2199
|
-
"description": "Use for
|
|
3959
|
+
"description": "Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2200
3960
|
},
|
|
2201
|
-
"value": "
|
|
3961
|
+
"value": "#FDD0EC"
|
|
2202
3962
|
},
|
|
2203
|
-
"name": "color.background.accent.
|
|
2204
|
-
"path": ["color", "background", "accent", "
|
|
2205
|
-
"cleanName": "color.background.accent.
|
|
3963
|
+
"name": "color.background.accent.magenta.subtler.[default]",
|
|
3964
|
+
"path": ["color", "background", "accent", "magenta", "subtler", "[default]"],
|
|
3965
|
+
"cleanName": "color.background.accent.magenta.subtler"
|
|
2206
3966
|
}, {
|
|
2207
3967
|
"attributes": {
|
|
2208
3968
|
"group": "paint",
|
|
2209
3969
|
"state": "active",
|
|
2210
|
-
"introduced": "
|
|
2211
|
-
"description": "
|
|
3970
|
+
"introduced": "1.19.0",
|
|
3971
|
+
"description": "Hovered state of color.background.accent.magenta.subtler."
|
|
2212
3972
|
},
|
|
2213
|
-
"value": "#
|
|
3973
|
+
"value": "#F797D2",
|
|
2214
3974
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2215
3975
|
"isSource": true,
|
|
2216
3976
|
"original": {
|
|
2217
3977
|
"attributes": {
|
|
2218
3978
|
"group": "paint",
|
|
2219
3979
|
"state": "active",
|
|
2220
|
-
"introduced": "
|
|
2221
|
-
"description": "
|
|
3980
|
+
"introduced": "1.19.0",
|
|
3981
|
+
"description": "Hovered state of color.background.accent.magenta.subtler."
|
|
2222
3982
|
},
|
|
2223
|
-
"value": "
|
|
3983
|
+
"value": "#F797D2"
|
|
2224
3984
|
},
|
|
2225
|
-
"name": "color.background.accent.
|
|
2226
|
-
"path": ["color", "background", "accent", "
|
|
2227
|
-
"cleanName": "color.background.accent.
|
|
3985
|
+
"name": "color.background.accent.magenta.subtler.hovered",
|
|
3986
|
+
"path": ["color", "background", "accent", "magenta", "subtler", "hovered"],
|
|
3987
|
+
"cleanName": "color.background.accent.magenta.subtler.hovered"
|
|
2228
3988
|
}, {
|
|
2229
3989
|
"attributes": {
|
|
2230
3990
|
"group": "paint",
|
|
2231
3991
|
"state": "active",
|
|
2232
|
-
"introduced": "
|
|
2233
|
-
"description": "
|
|
3992
|
+
"introduced": "1.19.0",
|
|
3993
|
+
"description": "Pressed state of color.background.accent.magenta.subtler."
|
|
2234
3994
|
},
|
|
2235
|
-
"value": "#
|
|
3995
|
+
"value": "#E774BB",
|
|
2236
3996
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2237
3997
|
"isSource": true,
|
|
2238
3998
|
"original": {
|
|
2239
3999
|
"attributes": {
|
|
2240
4000
|
"group": "paint",
|
|
2241
4001
|
"state": "active",
|
|
2242
|
-
"introduced": "
|
|
2243
|
-
"description": "
|
|
4002
|
+
"introduced": "1.19.0",
|
|
4003
|
+
"description": "Pressed state of color.background.accent.magenta.subtler."
|
|
2244
4004
|
},
|
|
2245
|
-
"value": "
|
|
4005
|
+
"value": "#E774BB"
|
|
2246
4006
|
},
|
|
2247
|
-
"name": "color.background.accent.
|
|
2248
|
-
"path": ["color", "background", "accent", "
|
|
2249
|
-
"cleanName": "color.background.accent.
|
|
4007
|
+
"name": "color.background.accent.magenta.subtler.pressed",
|
|
4008
|
+
"path": ["color", "background", "accent", "magenta", "subtler", "pressed"],
|
|
4009
|
+
"cleanName": "color.background.accent.magenta.subtler.pressed"
|
|
2250
4010
|
}, {
|
|
2251
4011
|
"attributes": {
|
|
2252
4012
|
"group": "paint",
|
|
2253
4013
|
"state": "active",
|
|
2254
4014
|
"introduced": "0.7.0",
|
|
2255
|
-
"description": "Use for vibrant
|
|
4015
|
+
"description": "Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2256
4016
|
},
|
|
2257
|
-
"value": "#
|
|
4017
|
+
"value": "#E774BB",
|
|
2258
4018
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2259
4019
|
"isSource": true,
|
|
2260
4020
|
"original": {
|
|
@@ -2262,65 +4022,65 @@ var tokens = [{
|
|
|
2262
4022
|
"group": "paint",
|
|
2263
4023
|
"state": "active",
|
|
2264
4024
|
"introduced": "0.7.0",
|
|
2265
|
-
"description": "Use for vibrant
|
|
4025
|
+
"description": "Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2266
4026
|
},
|
|
2267
|
-
"value": "
|
|
4027
|
+
"value": "#E774BB"
|
|
2268
4028
|
},
|
|
2269
|
-
"name": "color.background.accent.
|
|
2270
|
-
"path": ["color", "background", "accent", "
|
|
2271
|
-
"cleanName": "color.background.accent.
|
|
4029
|
+
"name": "color.background.accent.magenta.subtle.[default]",
|
|
4030
|
+
"path": ["color", "background", "accent", "magenta", "subtle", "[default]"],
|
|
4031
|
+
"cleanName": "color.background.accent.magenta.subtle"
|
|
2272
4032
|
}, {
|
|
2273
4033
|
"attributes": {
|
|
2274
4034
|
"group": "paint",
|
|
2275
4035
|
"state": "active",
|
|
2276
|
-
"introduced": "
|
|
2277
|
-
"description": "
|
|
4036
|
+
"introduced": "1.19.0",
|
|
4037
|
+
"description": "Hovered state of color.background.accent.magenta.subtle."
|
|
2278
4038
|
},
|
|
2279
|
-
"value": "#
|
|
4039
|
+
"value": "#F797D2",
|
|
2280
4040
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2281
4041
|
"isSource": true,
|
|
2282
4042
|
"original": {
|
|
2283
4043
|
"attributes": {
|
|
2284
4044
|
"group": "paint",
|
|
2285
4045
|
"state": "active",
|
|
2286
|
-
"introduced": "
|
|
2287
|
-
"description": "
|
|
4046
|
+
"introduced": "1.19.0",
|
|
4047
|
+
"description": "Hovered state of color.background.accent.magenta.subtle."
|
|
2288
4048
|
},
|
|
2289
|
-
"value": "
|
|
4049
|
+
"value": "#F797D2"
|
|
2290
4050
|
},
|
|
2291
|
-
"name": "color.background.accent.
|
|
2292
|
-
"path": ["color", "background", "accent", "
|
|
2293
|
-
"cleanName": "color.background.accent.
|
|
4051
|
+
"name": "color.background.accent.magenta.subtle.hovered",
|
|
4052
|
+
"path": ["color", "background", "accent", "magenta", "subtle", "hovered"],
|
|
4053
|
+
"cleanName": "color.background.accent.magenta.subtle.hovered"
|
|
2294
4054
|
}, {
|
|
2295
4055
|
"attributes": {
|
|
2296
4056
|
"group": "paint",
|
|
2297
4057
|
"state": "active",
|
|
2298
|
-
"introduced": "
|
|
2299
|
-
"description": "
|
|
4058
|
+
"introduced": "1.19.0",
|
|
4059
|
+
"description": "Pressed state of color.background.accent.magenta.subtle."
|
|
2300
4060
|
},
|
|
2301
|
-
"value": "#
|
|
4061
|
+
"value": "#FDD0EC",
|
|
2302
4062
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2303
4063
|
"isSource": true,
|
|
2304
4064
|
"original": {
|
|
2305
4065
|
"attributes": {
|
|
2306
4066
|
"group": "paint",
|
|
2307
4067
|
"state": "active",
|
|
2308
|
-
"introduced": "
|
|
2309
|
-
"description": "
|
|
4068
|
+
"introduced": "1.19.0",
|
|
4069
|
+
"description": "Pressed state of color.background.accent.magenta.subtle."
|
|
2310
4070
|
},
|
|
2311
|
-
"value": "
|
|
4071
|
+
"value": "#FDD0EC"
|
|
2312
4072
|
},
|
|
2313
|
-
"name": "color.background.accent.
|
|
2314
|
-
"path": ["color", "background", "accent", "
|
|
2315
|
-
"cleanName": "color.background.accent.
|
|
4073
|
+
"name": "color.background.accent.magenta.subtle.pressed",
|
|
4074
|
+
"path": ["color", "background", "accent", "magenta", "subtle", "pressed"],
|
|
4075
|
+
"cleanName": "color.background.accent.magenta.subtle.pressed"
|
|
2316
4076
|
}, {
|
|
2317
4077
|
"attributes": {
|
|
2318
4078
|
"group": "paint",
|
|
2319
4079
|
"state": "active",
|
|
2320
4080
|
"introduced": "0.7.0",
|
|
2321
|
-
"description": "Use for
|
|
4081
|
+
"description": "Use for magenta backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2322
4082
|
},
|
|
2323
|
-
"value": "#
|
|
4083
|
+
"value": "#AE4787",
|
|
2324
4084
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2325
4085
|
"isSource": true,
|
|
2326
4086
|
"original": {
|
|
@@ -2328,65 +4088,65 @@ var tokens = [{
|
|
|
2328
4088
|
"group": "paint",
|
|
2329
4089
|
"state": "active",
|
|
2330
4090
|
"introduced": "0.7.0",
|
|
2331
|
-
"description": "Use for
|
|
4091
|
+
"description": "Use for magenta backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2332
4092
|
},
|
|
2333
|
-
"value": "
|
|
4093
|
+
"value": "#AE4787"
|
|
2334
4094
|
},
|
|
2335
|
-
"name": "color.background.accent.
|
|
2336
|
-
"path": ["color", "background", "accent", "
|
|
2337
|
-
"cleanName": "color.background.accent.
|
|
4095
|
+
"name": "color.background.accent.magenta.bolder.[default]",
|
|
4096
|
+
"path": ["color", "background", "accent", "magenta", "bolder", "[default]"],
|
|
4097
|
+
"cleanName": "color.background.accent.magenta.bolder"
|
|
2338
4098
|
}, {
|
|
2339
4099
|
"attributes": {
|
|
2340
4100
|
"group": "paint",
|
|
2341
4101
|
"state": "active",
|
|
2342
|
-
"introduced": "
|
|
2343
|
-
"description": "
|
|
4102
|
+
"introduced": "1.19.0",
|
|
4103
|
+
"description": "Hovered state of color.background.accent.magenta.bolder."
|
|
2344
4104
|
},
|
|
2345
|
-
"value": "#
|
|
4105
|
+
"value": "#943D73",
|
|
2346
4106
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2347
4107
|
"isSource": true,
|
|
2348
4108
|
"original": {
|
|
2349
4109
|
"attributes": {
|
|
2350
4110
|
"group": "paint",
|
|
2351
4111
|
"state": "active",
|
|
2352
|
-
"introduced": "
|
|
2353
|
-
"description": "
|
|
4112
|
+
"introduced": "1.19.0",
|
|
4113
|
+
"description": "Hovered state of color.background.accent.magenta.bolder."
|
|
2354
4114
|
},
|
|
2355
|
-
"value": "
|
|
4115
|
+
"value": "#943D73"
|
|
2356
4116
|
},
|
|
2357
|
-
"name": "color.background.accent.
|
|
2358
|
-
"path": ["color", "background", "accent", "
|
|
2359
|
-
"cleanName": "color.background.accent.
|
|
4117
|
+
"name": "color.background.accent.magenta.bolder.hovered",
|
|
4118
|
+
"path": ["color", "background", "accent", "magenta", "bolder", "hovered"],
|
|
4119
|
+
"cleanName": "color.background.accent.magenta.bolder.hovered"
|
|
2360
4120
|
}, {
|
|
2361
4121
|
"attributes": {
|
|
2362
4122
|
"group": "paint",
|
|
2363
4123
|
"state": "active",
|
|
2364
|
-
"introduced": "
|
|
2365
|
-
"description": "
|
|
4124
|
+
"introduced": "1.19.0",
|
|
4125
|
+
"description": "Pressed state of color.background.accent.magenta.bolder."
|
|
2366
4126
|
},
|
|
2367
|
-
"value": "#
|
|
4127
|
+
"value": "#50253F",
|
|
2368
4128
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2369
4129
|
"isSource": true,
|
|
2370
4130
|
"original": {
|
|
2371
4131
|
"attributes": {
|
|
2372
4132
|
"group": "paint",
|
|
2373
4133
|
"state": "active",
|
|
2374
|
-
"introduced": "
|
|
2375
|
-
"description": "
|
|
4134
|
+
"introduced": "1.19.0",
|
|
4135
|
+
"description": "Pressed state of color.background.accent.magenta.bolder."
|
|
2376
4136
|
},
|
|
2377
|
-
"value": "
|
|
4137
|
+
"value": "#50253F"
|
|
2378
4138
|
},
|
|
2379
|
-
"name": "color.background.accent.
|
|
2380
|
-
"path": ["color", "background", "accent", "
|
|
2381
|
-
"cleanName": "color.background.accent.
|
|
4139
|
+
"name": "color.background.accent.magenta.bolder.pressed",
|
|
4140
|
+
"path": ["color", "background", "accent", "magenta", "bolder", "pressed"],
|
|
4141
|
+
"cleanName": "color.background.accent.magenta.bolder.pressed"
|
|
2382
4142
|
}, {
|
|
2383
4143
|
"attributes": {
|
|
2384
4144
|
"group": "paint",
|
|
2385
4145
|
"state": "active",
|
|
2386
4146
|
"introduced": "0.7.0",
|
|
2387
|
-
"description": "Use for
|
|
4147
|
+
"description": "Use for gray backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2388
4148
|
},
|
|
2389
|
-
"value": "#
|
|
4149
|
+
"value": "#6B778C",
|
|
2390
4150
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2391
4151
|
"isSource": true,
|
|
2392
4152
|
"original": {
|
|
@@ -2394,65 +4154,65 @@ var tokens = [{
|
|
|
2394
4154
|
"group": "paint",
|
|
2395
4155
|
"state": "active",
|
|
2396
4156
|
"introduced": "0.7.0",
|
|
2397
|
-
"description": "Use for
|
|
4157
|
+
"description": "Use for gray backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2398
4158
|
},
|
|
2399
|
-
"value": "
|
|
4159
|
+
"value": "N200"
|
|
2400
4160
|
},
|
|
2401
|
-
"name": "color.background.accent.
|
|
2402
|
-
"path": ["color", "background", "accent", "
|
|
2403
|
-
"cleanName": "color.background.accent.
|
|
4161
|
+
"name": "color.background.accent.gray.subtlest.[default]",
|
|
4162
|
+
"path": ["color", "background", "accent", "gray", "subtlest", "[default]"],
|
|
4163
|
+
"cleanName": "color.background.accent.gray.subtlest"
|
|
2404
4164
|
}, {
|
|
2405
4165
|
"attributes": {
|
|
2406
4166
|
"group": "paint",
|
|
2407
4167
|
"state": "active",
|
|
2408
|
-
"introduced": "
|
|
2409
|
-
"description": "
|
|
4168
|
+
"introduced": "1.19.0",
|
|
4169
|
+
"description": "Hovered state of color.background.accent.gray.subtlest."
|
|
2410
4170
|
},
|
|
2411
|
-
"value": "#
|
|
4171
|
+
"value": "#5E6C84",
|
|
2412
4172
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2413
4173
|
"isSource": true,
|
|
2414
4174
|
"original": {
|
|
2415
4175
|
"attributes": {
|
|
2416
4176
|
"group": "paint",
|
|
2417
4177
|
"state": "active",
|
|
2418
|
-
"introduced": "
|
|
2419
|
-
"description": "
|
|
4178
|
+
"introduced": "1.19.0",
|
|
4179
|
+
"description": "Hovered state of color.background.accent.gray.subtlest."
|
|
2420
4180
|
},
|
|
2421
|
-
"value": "
|
|
4181
|
+
"value": "N300"
|
|
2422
4182
|
},
|
|
2423
|
-
"name": "color.background.accent.
|
|
2424
|
-
"path": ["color", "background", "accent", "
|
|
2425
|
-
"cleanName": "color.background.accent.
|
|
4183
|
+
"name": "color.background.accent.gray.subtlest.hovered",
|
|
4184
|
+
"path": ["color", "background", "accent", "gray", "subtlest", "hovered"],
|
|
4185
|
+
"cleanName": "color.background.accent.gray.subtlest.hovered"
|
|
2426
4186
|
}, {
|
|
2427
4187
|
"attributes": {
|
|
2428
4188
|
"group": "paint",
|
|
2429
4189
|
"state": "active",
|
|
2430
|
-
"introduced": "
|
|
2431
|
-
"description": "
|
|
4190
|
+
"introduced": "1.19.0",
|
|
4191
|
+
"description": "Pressed state of color.background.accent.gray.subtlest."
|
|
2432
4192
|
},
|
|
2433
|
-
"value": "#
|
|
4193
|
+
"value": "#505F79",
|
|
2434
4194
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2435
4195
|
"isSource": true,
|
|
2436
4196
|
"original": {
|
|
2437
4197
|
"attributes": {
|
|
2438
4198
|
"group": "paint",
|
|
2439
4199
|
"state": "active",
|
|
2440
|
-
"introduced": "
|
|
2441
|
-
"description": "
|
|
4200
|
+
"introduced": "1.19.0",
|
|
4201
|
+
"description": "Pressed state of color.background.accent.gray.subtlest."
|
|
2442
4202
|
},
|
|
2443
|
-
"value": "
|
|
4203
|
+
"value": "N400"
|
|
2444
4204
|
},
|
|
2445
|
-
"name": "color.background.accent.
|
|
2446
|
-
"path": ["color", "background", "accent", "
|
|
2447
|
-
"cleanName": "color.background.accent.
|
|
4205
|
+
"name": "color.background.accent.gray.subtlest.pressed",
|
|
4206
|
+
"path": ["color", "background", "accent", "gray", "subtlest", "pressed"],
|
|
4207
|
+
"cleanName": "color.background.accent.gray.subtlest.pressed"
|
|
2448
4208
|
}, {
|
|
2449
4209
|
"attributes": {
|
|
2450
4210
|
"group": "paint",
|
|
2451
4211
|
"state": "active",
|
|
2452
4212
|
"introduced": "0.7.0",
|
|
2453
|
-
"description": "Use for
|
|
4213
|
+
"description": "Use for gray backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2454
4214
|
},
|
|
2455
|
-
"value": "#
|
|
4215
|
+
"value": "#5E6C84",
|
|
2456
4216
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2457
4217
|
"isSource": true,
|
|
2458
4218
|
"original": {
|
|
@@ -2460,65 +4220,65 @@ var tokens = [{
|
|
|
2460
4220
|
"group": "paint",
|
|
2461
4221
|
"state": "active",
|
|
2462
4222
|
"introduced": "0.7.0",
|
|
2463
|
-
"description": "Use for
|
|
4223
|
+
"description": "Use for gray backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2464
4224
|
},
|
|
2465
|
-
"value": "
|
|
4225
|
+
"value": "N300"
|
|
2466
4226
|
},
|
|
2467
|
-
"name": "color.background.accent.
|
|
2468
|
-
"path": ["color", "background", "accent", "
|
|
2469
|
-
"cleanName": "color.background.accent.
|
|
4227
|
+
"name": "color.background.accent.gray.subtler.[default]",
|
|
4228
|
+
"path": ["color", "background", "accent", "gray", "subtler", "[default]"],
|
|
4229
|
+
"cleanName": "color.background.accent.gray.subtler"
|
|
2470
4230
|
}, {
|
|
2471
4231
|
"attributes": {
|
|
2472
4232
|
"group": "paint",
|
|
2473
4233
|
"state": "active",
|
|
2474
|
-
"introduced": "
|
|
2475
|
-
"description": "
|
|
4234
|
+
"introduced": "1.19.0",
|
|
4235
|
+
"description": "Hovered state of color.background.accent.gray.subtler."
|
|
2476
4236
|
},
|
|
2477
|
-
"value": "#
|
|
4237
|
+
"value": "#505F79",
|
|
2478
4238
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2479
4239
|
"isSource": true,
|
|
2480
4240
|
"original": {
|
|
2481
4241
|
"attributes": {
|
|
2482
4242
|
"group": "paint",
|
|
2483
4243
|
"state": "active",
|
|
2484
|
-
"introduced": "
|
|
2485
|
-
"description": "
|
|
4244
|
+
"introduced": "1.19.0",
|
|
4245
|
+
"description": "Hovered state of color.background.accent.gray.subtler."
|
|
2486
4246
|
},
|
|
2487
|
-
"value": "
|
|
4247
|
+
"value": "N400"
|
|
2488
4248
|
},
|
|
2489
|
-
"name": "color.background.accent.
|
|
2490
|
-
"path": ["color", "background", "accent", "
|
|
2491
|
-
"cleanName": "color.background.accent.
|
|
4249
|
+
"name": "color.background.accent.gray.subtler.hovered",
|
|
4250
|
+
"path": ["color", "background", "accent", "gray", "subtler", "hovered"],
|
|
4251
|
+
"cleanName": "color.background.accent.gray.subtler.hovered"
|
|
2492
4252
|
}, {
|
|
2493
4253
|
"attributes": {
|
|
2494
4254
|
"group": "paint",
|
|
2495
4255
|
"state": "active",
|
|
2496
|
-
"introduced": "
|
|
2497
|
-
"description": "
|
|
4256
|
+
"introduced": "1.19.0",
|
|
4257
|
+
"description": "Pressed state of color.background.accent.gray.subtler."
|
|
2498
4258
|
},
|
|
2499
|
-
"value": "#
|
|
4259
|
+
"value": "#42526E",
|
|
2500
4260
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2501
4261
|
"isSource": true,
|
|
2502
4262
|
"original": {
|
|
2503
4263
|
"attributes": {
|
|
2504
4264
|
"group": "paint",
|
|
2505
4265
|
"state": "active",
|
|
2506
|
-
"introduced": "
|
|
2507
|
-
"description": "
|
|
4266
|
+
"introduced": "1.19.0",
|
|
4267
|
+
"description": "Pressed state of color.background.accent.gray.subtler."
|
|
2508
4268
|
},
|
|
2509
|
-
"value": "
|
|
4269
|
+
"value": "N500"
|
|
2510
4270
|
},
|
|
2511
|
-
"name": "color.background.accent.
|
|
2512
|
-
"path": ["color", "background", "accent", "
|
|
2513
|
-
"cleanName": "color.background.accent.
|
|
4271
|
+
"name": "color.background.accent.gray.subtler.pressed",
|
|
4272
|
+
"path": ["color", "background", "accent", "gray", "subtler", "pressed"],
|
|
4273
|
+
"cleanName": "color.background.accent.gray.subtler.pressed"
|
|
2514
4274
|
}, {
|
|
2515
4275
|
"attributes": {
|
|
2516
4276
|
"group": "paint",
|
|
2517
4277
|
"state": "active",
|
|
2518
4278
|
"introduced": "0.7.0",
|
|
2519
|
-
"description": "Use for vibrant
|
|
4279
|
+
"description": "Use for vibrant gray backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2520
4280
|
},
|
|
2521
|
-
"value": "#
|
|
4281
|
+
"value": "#505F79",
|
|
2522
4282
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2523
4283
|
"isSource": true,
|
|
2524
4284
|
"original": {
|
|
@@ -2526,41 +4286,41 @@ var tokens = [{
|
|
|
2526
4286
|
"group": "paint",
|
|
2527
4287
|
"state": "active",
|
|
2528
4288
|
"introduced": "0.7.0",
|
|
2529
|
-
"description": "Use for vibrant
|
|
4289
|
+
"description": "Use for vibrant gray backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2530
4290
|
},
|
|
2531
|
-
"value": "
|
|
4291
|
+
"value": "N400"
|
|
2532
4292
|
},
|
|
2533
|
-
"name": "color.background.accent.
|
|
2534
|
-
"path": ["color", "background", "accent", "
|
|
2535
|
-
"cleanName": "color.background.accent.
|
|
4293
|
+
"name": "color.background.accent.gray.subtle.[default]",
|
|
4294
|
+
"path": ["color", "background", "accent", "gray", "subtle", "[default]"],
|
|
4295
|
+
"cleanName": "color.background.accent.gray.subtle"
|
|
2536
4296
|
}, {
|
|
2537
4297
|
"attributes": {
|
|
2538
4298
|
"group": "paint",
|
|
2539
4299
|
"state": "active",
|
|
2540
|
-
"introduced": "
|
|
2541
|
-
"description": "
|
|
4300
|
+
"introduced": "1.19.0",
|
|
4301
|
+
"description": "Hovered state of color.background.accent.gray.subtle."
|
|
2542
4302
|
},
|
|
2543
|
-
"value": "#
|
|
4303
|
+
"value": "#5E6C84",
|
|
2544
4304
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2545
4305
|
"isSource": true,
|
|
2546
4306
|
"original": {
|
|
2547
4307
|
"attributes": {
|
|
2548
4308
|
"group": "paint",
|
|
2549
4309
|
"state": "active",
|
|
2550
|
-
"introduced": "
|
|
2551
|
-
"description": "
|
|
4310
|
+
"introduced": "1.19.0",
|
|
4311
|
+
"description": "Hovered state of color.background.accent.gray.subtle."
|
|
2552
4312
|
},
|
|
2553
|
-
"value": "
|
|
4313
|
+
"value": "N300"
|
|
2554
4314
|
},
|
|
2555
|
-
"name": "color.background.accent.
|
|
2556
|
-
"path": ["color", "background", "accent", "
|
|
2557
|
-
"cleanName": "color.background.accent.
|
|
4315
|
+
"name": "color.background.accent.gray.subtle.hovered",
|
|
4316
|
+
"path": ["color", "background", "accent", "gray", "subtle", "hovered"],
|
|
4317
|
+
"cleanName": "color.background.accent.gray.subtle.hovered"
|
|
2558
4318
|
}, {
|
|
2559
4319
|
"attributes": {
|
|
2560
4320
|
"group": "paint",
|
|
2561
4321
|
"state": "active",
|
|
2562
|
-
"introduced": "
|
|
2563
|
-
"description": "
|
|
4322
|
+
"introduced": "1.19.0",
|
|
4323
|
+
"description": "Pressed state of color.background.accent.gray.subtle."
|
|
2564
4324
|
},
|
|
2565
4325
|
"value": "#6B778C",
|
|
2566
4326
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
@@ -2569,22 +4329,22 @@ var tokens = [{
|
|
|
2569
4329
|
"attributes": {
|
|
2570
4330
|
"group": "paint",
|
|
2571
4331
|
"state": "active",
|
|
2572
|
-
"introduced": "
|
|
2573
|
-
"description": "
|
|
4332
|
+
"introduced": "1.19.0",
|
|
4333
|
+
"description": "Pressed state of color.background.accent.gray.subtle."
|
|
2574
4334
|
},
|
|
2575
4335
|
"value": "N200"
|
|
2576
4336
|
},
|
|
2577
|
-
"name": "color.background.accent.gray.
|
|
2578
|
-
"path": ["color", "background", "accent", "gray", "
|
|
2579
|
-
"cleanName": "color.background.accent.gray.
|
|
4337
|
+
"name": "color.background.accent.gray.subtle.pressed",
|
|
4338
|
+
"path": ["color", "background", "accent", "gray", "subtle", "pressed"],
|
|
4339
|
+
"cleanName": "color.background.accent.gray.subtle.pressed"
|
|
2580
4340
|
}, {
|
|
2581
4341
|
"attributes": {
|
|
2582
4342
|
"group": "paint",
|
|
2583
4343
|
"state": "active",
|
|
2584
4344
|
"introduced": "0.7.0",
|
|
2585
|
-
"description": "Use for gray backgrounds when there is no meaning tied to the color,
|
|
4345
|
+
"description": "Use for gray backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2586
4346
|
},
|
|
2587
|
-
"value": "#
|
|
4347
|
+
"value": "#42526E",
|
|
2588
4348
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2589
4349
|
"isSource": true,
|
|
2590
4350
|
"original": {
|
|
@@ -2592,57 +4352,57 @@ var tokens = [{
|
|
|
2592
4352
|
"group": "paint",
|
|
2593
4353
|
"state": "active",
|
|
2594
4354
|
"introduced": "0.7.0",
|
|
2595
|
-
"description": "Use for gray backgrounds when there is no meaning tied to the color,
|
|
4355
|
+
"description": "Use for gray backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements."
|
|
2596
4356
|
},
|
|
2597
|
-
"value": "
|
|
4357
|
+
"value": "N500"
|
|
2598
4358
|
},
|
|
2599
|
-
"name": "color.background.accent.gray.
|
|
2600
|
-
"path": ["color", "background", "accent", "gray", "
|
|
2601
|
-
"cleanName": "color.background.accent.gray.
|
|
4359
|
+
"name": "color.background.accent.gray.bolder.[default]",
|
|
4360
|
+
"path": ["color", "background", "accent", "gray", "bolder", "[default]"],
|
|
4361
|
+
"cleanName": "color.background.accent.gray.bolder"
|
|
2602
4362
|
}, {
|
|
2603
4363
|
"attributes": {
|
|
2604
4364
|
"group": "paint",
|
|
2605
4365
|
"state": "active",
|
|
2606
|
-
"introduced": "
|
|
2607
|
-
"description": "
|
|
4366
|
+
"introduced": "1.19.0",
|
|
4367
|
+
"description": "Hovered state of color.background.accent.gray.bolder."
|
|
2608
4368
|
},
|
|
2609
|
-
"value": "#
|
|
4369
|
+
"value": "#344563",
|
|
2610
4370
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2611
4371
|
"isSource": true,
|
|
2612
4372
|
"original": {
|
|
2613
4373
|
"attributes": {
|
|
2614
4374
|
"group": "paint",
|
|
2615
4375
|
"state": "active",
|
|
2616
|
-
"introduced": "
|
|
2617
|
-
"description": "
|
|
4376
|
+
"introduced": "1.19.0",
|
|
4377
|
+
"description": "Hovered state of color.background.accent.gray.bolder."
|
|
2618
4378
|
},
|
|
2619
|
-
"value": "
|
|
4379
|
+
"value": "N600"
|
|
2620
4380
|
},
|
|
2621
|
-
"name": "color.background.accent.gray.
|
|
2622
|
-
"path": ["color", "background", "accent", "gray", "
|
|
2623
|
-
"cleanName": "color.background.accent.gray.
|
|
4381
|
+
"name": "color.background.accent.gray.bolder.hovered",
|
|
4382
|
+
"path": ["color", "background", "accent", "gray", "bolder", "hovered"],
|
|
4383
|
+
"cleanName": "color.background.accent.gray.bolder.hovered"
|
|
2624
4384
|
}, {
|
|
2625
4385
|
"attributes": {
|
|
2626
4386
|
"group": "paint",
|
|
2627
4387
|
"state": "active",
|
|
2628
|
-
"introduced": "
|
|
2629
|
-
"description": "
|
|
4388
|
+
"introduced": "1.19.0",
|
|
4389
|
+
"description": "Pressed state of color.background.accent.gray.subtlest."
|
|
2630
4390
|
},
|
|
2631
|
-
"value": "#
|
|
4391
|
+
"value": "#253858",
|
|
2632
4392
|
"filePath": "src/tokens/atlassian-legacy-light/color/accent.tsx",
|
|
2633
4393
|
"isSource": true,
|
|
2634
4394
|
"original": {
|
|
2635
4395
|
"attributes": {
|
|
2636
4396
|
"group": "paint",
|
|
2637
4397
|
"state": "active",
|
|
2638
|
-
"introduced": "
|
|
2639
|
-
"description": "
|
|
4398
|
+
"introduced": "1.19.0",
|
|
4399
|
+
"description": "Pressed state of color.background.accent.gray.subtlest."
|
|
2640
4400
|
},
|
|
2641
|
-
"value": "
|
|
4401
|
+
"value": "N700"
|
|
2642
4402
|
},
|
|
2643
|
-
"name": "color.background.accent.gray.bolder",
|
|
2644
|
-
"path": ["color", "background", "accent", "gray", "bolder"],
|
|
2645
|
-
"cleanName": "color.background.accent.gray.bolder"
|
|
4403
|
+
"name": "color.background.accent.gray.bolder.pressed",
|
|
4404
|
+
"path": ["color", "background", "accent", "gray", "bolder", "pressed"],
|
|
4405
|
+
"cleanName": "color.background.accent.gray.bolder.pressed"
|
|
2646
4406
|
}, {
|
|
2647
4407
|
"attributes": {
|
|
2648
4408
|
"group": "paint",
|