@nswds/tokens 2.2.1 → 2.4.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.
Files changed (163) hide show
  1. package/dist/index.d.mts +3009 -0
  2. package/dist/index.d.ts +3009 -0
  3. package/dist/index.js +10718 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/index.mjs +10706 -0
  6. package/dist/index.mjs.map +1 -0
  7. package/dist/json/colors/global/hex.json +1 -0
  8. package/dist/json/colors/global/hsl.json +1 -0
  9. package/dist/json/colors/global/oklch.json +1 -0
  10. package/dist/json/colors/global/rgb.json +1 -0
  11. package/dist/json/colors/themes/masterbrand/hex.json +1 -0
  12. package/dist/json/colors/themes/masterbrand/hsl.json +1 -0
  13. package/dist/json/colors/themes/masterbrand/oklch.json +1 -0
  14. package/dist/json/colors/themes/masterbrand/rgb.json +1 -0
  15. package/package.json +55 -6
  16. package/src/css/colors/global/hex.css +192 -0
  17. package/src/css/colors/global/hsl.css +192 -0
  18. package/src/css/colors/global/oklch.css +192 -0
  19. package/src/css/colors/global/rgb.css +192 -0
  20. package/src/css/colors/themes/masterbrand/hex.css +2 -0
  21. package/src/css/colors/themes/masterbrand/hsl.css +2 -0
  22. package/src/css/colors/themes/masterbrand/oklch.css +2 -0
  23. package/src/css/colors/themes/masterbrand/rgb.css +2 -0
  24. package/src/index.ts +295 -0
  25. package/src/js/colors/global/hex.js +210 -0
  26. package/src/js/colors/global/hsl.js +210 -0
  27. package/src/js/colors/global/oklch.js +210 -0
  28. package/src/js/colors/global/rgb.js +210 -0
  29. package/src/js/colors/themes/masterbrand/hex.js +72 -0
  30. package/src/js/colors/themes/masterbrand/hsl.js +72 -0
  31. package/src/js/colors/themes/masterbrand/oklch.js +72 -0
  32. package/src/js/colors/themes/masterbrand/rgb.js +72 -0
  33. package/src/json/colors/global/hex.json +1 -0
  34. package/src/json/colors/global/hsl.json +1 -0
  35. package/src/json/colors/global/oklch.json +1 -0
  36. package/src/json/colors/global/rgb.json +1 -0
  37. package/src/json/colors/themes/masterbrand/hex.json +1 -0
  38. package/src/json/colors/themes/masterbrand/hsl.json +1 -0
  39. package/src/json/colors/themes/masterbrand/oklch.json +1 -0
  40. package/src/json/colors/themes/masterbrand/rgb.json +1 -0
  41. package/src/less/colors/global/hsl.less +0 -0
  42. package/src/less/colors/global/oklch.less +0 -0
  43. package/src/less/colors/global/rgb.less +0 -0
  44. package/src/less/colors/themes/masterbrand/hex.less +0 -0
  45. package/src/less/colors/themes/masterbrand/hsl.less +0 -0
  46. package/src/less/colors/themes/masterbrand/oklch.less +0 -0
  47. package/src/less/colors/themes/masterbrand/rgb.less +0 -0
  48. package/src/scss/colors/global/hex.scss +190 -0
  49. package/src/scss/colors/global/hsl.scss +190 -0
  50. package/src/scss/colors/global/oklch.scss +190 -0
  51. package/src/scss/colors/global/rgb.scss +190 -0
  52. package/src/scss/colors/themes/masterbrand/hex.scss +56 -0
  53. package/src/scss/colors/themes/masterbrand/hsl.scss +56 -0
  54. package/src/scss/colors/themes/masterbrand/oklch.scss +56 -0
  55. package/src/scss/colors/themes/masterbrand/rgb.scss +56 -0
  56. package/src/tailwind/colors/global/hex.css +192 -0
  57. package/src/tailwind/colors/global/hsl.css +192 -0
  58. package/src/tailwind/colors/global/oklch.css +192 -0
  59. package/src/tailwind/colors/global/rgb.css +192 -0
  60. package/src/tailwind/colors/themes/masterbrand/hex.css +58 -0
  61. package/src/tailwind/colors/themes/masterbrand/hsl.css +58 -0
  62. package/src/tailwind/colors/themes/masterbrand/oklch.css +58 -0
  63. package/src/tailwind/colors/themes/masterbrand/rgb.css +58 -0
  64. package/src/ts/colors/global/hex.ts +210 -0
  65. package/src/ts/colors/global/hsl.ts +210 -0
  66. package/src/ts/colors/global/oklch.ts +210 -0
  67. package/src/ts/colors/global/rgb.ts +210 -0
  68. package/src/ts/colors/themes/masterbrand/hex.ts +72 -0
  69. package/src/ts/colors/themes/masterbrand/hsl.ts +72 -0
  70. package/src/ts/colors/themes/masterbrand/oklch.ts +72 -0
  71. package/src/ts/colors/themes/masterbrand/rgb.ts +72 -0
  72. package/src/types.d.ts +25 -0
  73. package/.gitattributes +0 -2
  74. package/.github/workflows/ai-pr-title.yml +0 -115
  75. package/.github/workflows/openai-pr-description.yml +0 -13
  76. package/.github/workflows/opencommit.yml +0 -36
  77. package/.github/workflows/release.yml +0 -30
  78. package/.github/workflows/validate-branch-name.yml +0 -21
  79. package/.prettierignore +0 -18
  80. package/.prettierrc +0 -8
  81. package/CHANGELOG.md +0 -38
  82. package/assets/placeholder.svg +0 -1
  83. package/brand/black/logo.png +0 -0
  84. package/brand/black/logo.svg +0 -30
  85. package/brand/icon-dark.ico +0 -0
  86. package/brand/icon-dark.png +0 -0
  87. package/brand/icon-dark.svg +0 -17
  88. package/brand/icon-light.ico +0 -0
  89. package/brand/icon-light.png +0 -0
  90. package/brand/icon-light.svg +0 -30
  91. package/brand/icon.svg +0 -30
  92. package/brand/logo.png +0 -0
  93. package/brand/logo.svg +0 -34
  94. package/brand/placeholder.svg +0 -1
  95. package/brand/reversed/logo.png +0 -0
  96. package/brand/reversed/logo.svg +0 -34
  97. package/brand/white/logo.png +0 -0
  98. package/brand/white/logo.svg +0 -21
  99. package/create-branch.sh +0 -29
  100. package/eslint.config.js +0 -20
  101. package/git-conventional-commits.yaml +0 -43
  102. package/icons/account_circle.svg +0 -1
  103. package/icons/attach_file.svg +0 -1
  104. package/icons/cancel.svg +0 -1
  105. package/icons/check.svg +0 -1
  106. package/icons/check_circle.svg +0 -1
  107. package/icons/chevron_down.svg +0 -1
  108. package/icons/chevron_left.svg +0 -1
  109. package/icons/chevron_right.svg +0 -1
  110. package/icons/chevron_up.svg +0 -1
  111. package/icons/close.svg +0 -1
  112. package/icons/collapse_all.svg +0 -1
  113. package/icons/computer.svg +0 -1
  114. package/icons/copy.svg +0 -1
  115. package/icons/dark_mode.svg +0 -1
  116. package/icons/delete.svg +0 -1
  117. package/icons/desktop.svg +0 -1
  118. package/icons/display_settings.svg +0 -1
  119. package/icons/dock_to_left.svg +0 -1
  120. package/icons/dock_to_right.svg +0 -1
  121. package/icons/double_arrow_left.svg +0 -1
  122. package/icons/double_arrow_right.svg +0 -1
  123. package/icons/download.svg +0 -1
  124. package/icons/east.svg +0 -1
  125. package/icons/error.svg +0 -1
  126. package/icons/exclamation.svg +0 -1
  127. package/icons/eye.svg +0 -1
  128. package/icons/favorite.svg +0 -1
  129. package/icons/help.svg +0 -1
  130. package/icons/info.svg +0 -1
  131. package/icons/language.svg +0 -1
  132. package/icons/light_mode.svg +0 -1
  133. package/icons/link.svg +0 -1
  134. package/icons/login.svg +0 -1
  135. package/icons/logout.svg +0 -1
  136. package/icons/menu.svg +0 -1
  137. package/icons/more_horiz.svg +0 -1
  138. package/icons/more_vert.svg +0 -1
  139. package/icons/north.svg +0 -1
  140. package/icons/open_in_new.svg +0 -1
  141. package/icons/print.svg +0 -1
  142. package/icons/progress_activity.svg +0 -1
  143. package/icons/remove.svg +0 -1
  144. package/icons/search.svg +0 -1
  145. package/icons/settings_brightness.svg +0 -1
  146. package/icons/share.svg +0 -1
  147. package/icons/side_navigation.svg +0 -1
  148. package/icons/south.svg +0 -1
  149. package/icons/unfold_less.svg +0 -1
  150. package/icons/unfold_more.svg +0 -1
  151. package/icons/upload.svg +0 -1
  152. package/icons/west.svg +0 -1
  153. package/pull-request.sh +0 -61
  154. package/release.config.mjs +0 -24
  155. package/tokens/global/color/hex.json +0 -782
  156. package/tokens/global/color/hsl.json +0 -1542
  157. package/tokens/global/color/oklch.json +0 -1542
  158. package/tokens/global/color/rgb.json +0 -1542
  159. package/tokens/themes/masterbrand/color/hex.json +0 -242
  160. package/tokens/themes/masterbrand/color/hsl.json +0 -466
  161. package/tokens/themes/masterbrand/color/oklch.json +0 -466
  162. package/tokens/themes/masterbrand/color/rgb.json +0 -466
  163. /package/{index.ts → src/less/colors/global/hex.less} +0 -0
@@ -0,0 +1,72 @@
1
+ export const primary = {
2
+ lightest: '#0c5ad4',
3
+ lighter: '#0548ad',
4
+ light: '#023688',
5
+ DEFAULT: '#002664',
6
+ dark: '#001a4d',
7
+ darker: '#001037',
8
+ darkest: '#000622',
9
+ }
10
+ export const secondary = {
11
+ lightest: '#f0fbff',
12
+ lighter: '#e4f6ff',
13
+ light: '#d7f2fe',
14
+ DEFAULT: '#cbedfd',
15
+ dark: '#bceafe',
16
+ darker: '#ade7ff',
17
+ darkest: '#9de3ff',
18
+ }
19
+ export const tertiary = {
20
+ lightest: '#5ac9ff',
21
+ lighter: '#26aeff',
22
+ light: '#008fff',
23
+ DEFAULT: '#146cfd',
24
+ dark: '#0c5ad4',
25
+ darker: '#0548ad',
26
+ darkest: '#023688',
27
+ }
28
+ export const accent = {
29
+ lightest: '#f897a2',
30
+ lighter: '#ef7581',
31
+ light: '#e44f5f',
32
+ DEFAULT: '#d7153a',
33
+ dark: '#b90e32',
34
+ darker: '#9b072a',
35
+ darkest: '#7e0322',
36
+ }
37
+ export const success = {
38
+ lightest: '#c4e5c0',
39
+ lighter: '#8fc78b',
40
+ light: '#58a854',
41
+ DEFAULT: '#008a07',
42
+ dark: '#006a00',
43
+ darker: '#004c00',
44
+ darkest: '#002f00',
45
+ }
46
+ export const warning = {
47
+ lightest: '#fdd2c0',
48
+ lighter: '#eea88a',
49
+ light: '#dd7d53',
50
+ DEFAULT: '#c95000',
51
+ dark: '#9d3a00',
52
+ darker: '#722600',
53
+ darkest: '#4b1200',
54
+ }
55
+ export const error = {
56
+ lightest: '#fdc6c6',
57
+ lighter: '#ea9295',
58
+ light: '#d35d65',
59
+ DEFAULT: '#b81237',
60
+ dark: '#8f0327',
61
+ darker: '#690018',
62
+ darkest: '#44000a',
63
+ }
64
+ export const info = {
65
+ lightest: '#acbbd5',
66
+ lighter: '#8198c2',
67
+ light: '#5775ae',
68
+ DEFAULT: '#2e5299',
69
+ dark: '#203d77',
70
+ darker: '#132956',
71
+ darkest: '#071738',
72
+ }
@@ -0,0 +1,72 @@
1
+ export const primary = {
2
+ lightest: 'hsl(216.77, 89.39%, 43.99%)',
3
+ lighter: 'hsl(216.29, 94.12%, 35.01%)',
4
+ light: 'hsl(216.37, 97.67%, 26.93%)',
5
+ DEFAULT: 'hsl(217.2, 100%, 19.61%)',
6
+ dark: 'hsl(218.95, 100%, 14.93%)',
7
+ darker: 'hsl(222.31, 100%, 10.59%)',
8
+ darkest: 'hsl(228.65, 100%, 6.6%)',
9
+ }
10
+ export const secondary = {
11
+ lightest: 'hsl(199.45, 100%, 97.34%)',
12
+ lighter: 'hsl(199.38, 100%, 94.73%)',
13
+ light: 'hsl(199.29, 95.95%, 92.09%)',
14
+ DEFAULT: 'hsl(199.2, 92.7%, 89.41%)',
15
+ dark: 'hsl(198.5, 96.92%, 86.75%)',
16
+ darker: 'hsl(197.77, 99.01%, 83.9%)',
17
+ darkest: 'hsl(197, 99.86%, 80.82%)',
18
+ }
19
+ export const tertiary = {
20
+ lightest: 'hsl(199.75, 99.81%, 67.58%)',
21
+ lighter: 'hsl(202.53, 100%, 57.56%)',
22
+ light: 'hsl(204.78, 100%, 47%)',
23
+ DEFAULT: 'hsl(217.35, 98.29%, 53.54%)',
24
+ dark: 'hsl(216.77, 89.39%, 43.99%)',
25
+ darker: 'hsl(216.29, 94.12%, 35.01%)',
26
+ darkest: 'hsl(216.37, 97.67%, 26.93%)',
27
+ }
28
+ export const accent = {
29
+ lightest: 'hsl(353.39, 86.95%, 78.18%)',
30
+ lighter: 'hsl(353.95, 78.84%, 69.69%)',
31
+ light: 'hsl(353.52, 73.18%, 60.13%)',
32
+ DEFAULT: 'hsl(348.56, 82.17%, 46.29%)',
33
+ dark: 'hsl(347.26, 85.88%, 38.93%)',
34
+ darker: 'hsl(345.89, 90.98%, 31.82%)',
35
+ darkest: 'hsl(345, 95.86%, 25.31%)',
36
+ }
37
+ export const success = {
38
+ lightest: 'hsl(114.97, 40.73%, 82.58%)',
39
+ lighter: 'hsl(115.71, 34.69%, 66.15%)',
40
+ light: 'hsl(117.04, 33.36%, 49.53%)',
41
+ DEFAULT: 'hsl(123.03, 99.86%, 27.07%)',
42
+ dark: 'hsl(122.95, 100%, 19.11%)',
43
+ darker: 'hsl(122.88, 100%, 12.75%)',
44
+ darkest: 'hsl(122.85, 100%, 7.59%)',
45
+ }
46
+ export const warning = {
47
+ lightest: 'hsl(17.74, 94.96%, 87.24%)',
48
+ lighter: 'hsl(17.94, 75.08%, 73.77%)',
49
+ light: 'hsl(18.45, 66.88%, 59.6%)',
50
+ DEFAULT: 'hsl(23.88, 100%, 39.41%)',
51
+ dark: 'hsl(24.01, 100%, 29.25%)',
52
+ darker: 'hsl(22.64, 100%, 20.66%)',
53
+ darkest: 'hsl(18.45, 100%, 13.3%)',
54
+ }
55
+ export const error = {
56
+ lightest: 'hsl(359.69, 92.77%, 88.44%)',
57
+ lighter: 'hsl(358.32, 67.17%, 74.5%)',
58
+ light: 'hsl(355.68, 57.13%, 59.46%)',
59
+ DEFAULT: 'hsl(346.64, 82.14%, 39.61%)',
60
+ dark: 'hsl(344.75, 95.28%, 28.78%)',
61
+ darker: 'hsl(344.52, 100%, 19.69%)',
62
+ darkest: 'hsl(347.44, 100%, 12.27%)',
63
+ }
64
+ export const info = {
65
+ lightest: 'hsl(218.63, 32.11%, 75.49%)',
66
+ lighter: 'hsl(218.81, 34.57%, 63.16%)',
67
+ light: 'hsl(219.17, 34.9%, 51.02%)',
68
+ DEFAULT: 'hsl(219.81, 53.78%, 39.02%)',
69
+ dark: 'hsl(219.86, 57.49%, 29.6%)',
70
+ darker: 'hsl(219.94, 64.03%, 20.65%)',
71
+ darkest: 'hsl(220.32, 77.63%, 12.34%)',
72
+ }
@@ -0,0 +1,72 @@
1
+ export const primary = {
2
+ lightest: 'oklch(0.503825 0.201675 260.53)',
3
+ lighter: 'oklch(0.43255 0.17355 260.29999999999995)',
4
+ light: 'oklch(0.36127499999999996 0.145425 260.07)',
5
+ DEFAULT: 'oklch(0.29 0.1173 259.84)',
6
+ dark: 'oklch(0.23925 0.099705 259.84)',
7
+ darker: 'oklch(0.1885 0.08211 259.84)',
8
+ darkest: 'oklch(0.13774999999999998 0.064515 259.84)',
9
+ }
10
+ export const secondary = {
11
+ lightest: 'oklch(0.981675 0.013552500000000002 227.89)',
12
+ lighter: 'oklch(0.9633499999999999 0.022935 227.89)',
13
+ light: 'oklch(0.945025 0.0323175 227.89)',
14
+ DEFAULT: 'oklch(0.9267 0.0417 227.89)',
15
+ dark: 'oklch(0.9110499999999999 0.0543 226.8175)',
16
+ darker: 'oklch(0.8954 0.0669 225.745)',
17
+ darkest: 'oklch(0.87975 0.0795 224.67249999999999)',
18
+ }
19
+ export const tertiary = {
20
+ lightest: 'oklch(0.7918499999999999 0.126525 232.89)',
21
+ lighter: 'oklch(0.7196 0.16095 242.18)',
22
+ light: 'oklch(0.64735 0.19537500000000002 251.47)',
23
+ DEFAULT: 'oklch(0.5751 0.2298 260.76)',
24
+ dark: 'oklch(0.503825 0.201675 260.53)',
25
+ darker: 'oklch(0.43255 0.17355 260.29999999999995)',
26
+ darkest: 'oklch(0.36127499999999996 0.145425 260.07)',
27
+ }
28
+ export const accent = {
29
+ lightest: 'oklch(0.778675 0.11662499999999999 13.01)',
30
+ lighter: 'oklch(0.70645 0.15025 15.45)',
31
+ light: 'oklch(0.634225 0.183875 17.89)',
32
+ DEFAULT: 'oklch(0.562 0.2175 20.33)',
33
+ dark: 'oklch(0.50075 0.19485 19.529999999999998)',
34
+ darker: 'oklch(0.4395 0.17220000000000002 18.729999999999997)',
35
+ darkest: 'oklch(0.37825000000000003 0.14955000000000002 17.93)',
36
+ }
37
+ export const success = {
38
+ lightest: 'oklch(0.88725 0.06009250000000001 142.8)',
39
+ lighter: 'oklch(0.7745 0.10169500000000001 142.8)',
40
+ light: 'oklch(0.6617500000000001 0.14329750000000002 142.8)',
41
+ DEFAULT: 'oklch(0.549 0.1849 142.8)',
42
+ dark: 'oklch(0.452925 0.157165 142.8)',
43
+ darker: 'oklch(0.35685 0.12943000000000002 142.8)',
44
+ darkest: 'oklch(0.26077500000000003 0.10169500000000001 142.8)',
45
+ }
46
+ export const warning = {
47
+ lightest: 'oklch(0.895825 0.055154125 43.9973)',
48
+ lighter: 'oklch(0.79165 0.09333775 43.9973)',
49
+ light: 'oklch(0.6874750000000001 0.131521375 43.9973)',
50
+ DEFAULT: 'oklch(0.5833 0.169705 43.9973)',
51
+ dark: 'oklch(0.4812225 0.14424925 43.9973)',
52
+ darker: 'oklch(0.37914500000000007 0.1187935 43.9973)',
53
+ darkest: 'oklch(0.2770675 0.09333775 43.9973)',
54
+ }
55
+ export const error = {
56
+ lightest: 'oklch(0.8755 0.0626275 18.08)',
57
+ lighter: 'oklch(0.751 0.10598500000000001 18.08)',
58
+ light: 'oklch(0.6265000000000001 0.14934250000000002 18.08)',
59
+ DEFAULT: 'oklch(0.502 0.1927 18.08)',
60
+ dark: 'oklch(0.41415 0.16379500000000002 18.08)',
61
+ darker: 'oklch(0.32630000000000003 0.13489 18.08)',
62
+ darkest: 'oklch(0.23845 0.10598500000000001 18.08)',
63
+ }
64
+ export const info = {
65
+ lightest: 'oklch(0.78855 0.0400725 262.35)',
66
+ lighter: 'oklch(0.6759 0.067815 262.35)',
67
+ light: 'oklch(0.56325 0.0955575 262.35)',
68
+ DEFAULT: 'oklch(0.4506 0.1233 262.35)',
69
+ dark: 'oklch(0.371745 0.10480500000000001 262.35)',
70
+ darker: 'oklch(0.29289 0.08631 262.35)',
71
+ darkest: 'oklch(0.214035 0.067815 262.35)',
72
+ }
@@ -0,0 +1,72 @@
1
+ export const primary = {
2
+ lightest: 'rgb(12, 90, 212)',
3
+ lighter: 'rgb(5, 72, 173)',
4
+ light: 'rgb(2, 54, 136)',
5
+ DEFAULT: 'rgb(0, 38, 100)',
6
+ dark: 'rgb(0, 26, 77)',
7
+ darker: 'rgb(0, 16, 55)',
8
+ darkest: 'rgb(0, 6, 34)',
9
+ }
10
+ export const secondary = {
11
+ lightest: 'rgb(240, 251, 255)',
12
+ lighter: 'rgb(228, 246, 255)',
13
+ light: 'rgb(215, 242, 254)',
14
+ DEFAULT: 'rgb(203, 237, 253)',
15
+ dark: 'rgb(188, 234, 254)',
16
+ darker: 'rgb(173, 231, 255)',
17
+ darkest: 'rgb(157, 227, 255)',
18
+ }
19
+ export const tertiary = {
20
+ lightest: 'rgb(90, 201, 255)',
21
+ lighter: 'rgb(38, 174, 255)',
22
+ light: 'rgb(0, 143, 255)',
23
+ DEFAULT: 'rgb(20, 108, 253)',
24
+ dark: 'rgb(12, 90, 212)',
25
+ darker: 'rgb(5, 72, 173)',
26
+ darkest: 'rgb(2, 54, 136)',
27
+ }
28
+ export const accent = {
29
+ lightest: 'rgb(248, 151, 162)',
30
+ lighter: 'rgb(239, 117, 129)',
31
+ light: 'rgb(228, 79, 95)',
32
+ DEFAULT: 'rgb(215, 21, 58)',
33
+ dark: 'rgb(185, 14, 50)',
34
+ darker: 'rgb(155, 7, 42)',
35
+ darkest: 'rgb(126, 3, 34)',
36
+ }
37
+ export const success = {
38
+ lightest: 'rgb(196, 229, 192)',
39
+ lighter: 'rgb(143, 199, 139)',
40
+ light: 'rgb(88, 168, 84)',
41
+ DEFAULT: 'rgb(0, 138, 7)',
42
+ dark: 'rgb(0, 106, 0)',
43
+ darker: 'rgb(0, 76, 0)',
44
+ darkest: 'rgb(0, 47, 0)',
45
+ }
46
+ export const warning = {
47
+ lightest: 'rgb(253, 210, 192)',
48
+ lighter: 'rgb(238, 168, 138)',
49
+ light: 'rgb(221, 125, 83)',
50
+ DEFAULT: 'rgb(201, 80, 0)',
51
+ dark: 'rgb(157, 58, 0)',
52
+ darker: 'rgb(114, 38, 0)',
53
+ darkest: 'rgb(75, 18, 0)',
54
+ }
55
+ export const error = {
56
+ lightest: 'rgb(253, 198, 198)',
57
+ lighter: 'rgb(234, 146, 149)',
58
+ light: 'rgb(211, 93, 101)',
59
+ DEFAULT: 'rgb(184, 18, 55)',
60
+ dark: 'rgb(143, 3, 39)',
61
+ darker: 'rgb(105, 0, 24)',
62
+ darkest: 'rgb(68, 0, 10)',
63
+ }
64
+ export const info = {
65
+ lightest: 'rgb(172, 187, 213)',
66
+ lighter: 'rgb(129, 152, 194)',
67
+ light: 'rgb(87, 117, 174)',
68
+ DEFAULT: 'rgb(46, 82, 153)',
69
+ dark: 'rgb(32, 61, 119)',
70
+ darker: 'rgb(19, 41, 86)',
71
+ darkest: 'rgb(7, 23, 56)',
72
+ }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,190 @@
1
+ $nsw-grey-50: #fafafa;
2
+ $nsw-grey-100: #f5f5f5;
3
+ $nsw-grey-150: #f0f0f0;
4
+ $nsw-grey-200: #ebebeb;
5
+ $nsw-grey-250: #e5e4e5;
6
+ $nsw-grey-300: #dedee1;
7
+ $nsw-grey-350: #d6d8dc;
8
+ $nsw-grey-400: #cdd3d6;
9
+ $nsw-grey-450: #aab0b4;
10
+ $nsw-grey-500: #888f92;
11
+ $nsw-grey-550: #686f72;
12
+ $nsw-grey-600: #495054;
13
+ $nsw-grey-650: #3f4549;
14
+ $nsw-grey-700: #353b3f;
15
+ $nsw-grey-750: #2b3135;
16
+ $nsw-grey-800: #22272b;
17
+ $nsw-grey-850: #181c1f;
18
+ $nsw-grey-900: #0e1113;
19
+ $nsw-grey-950: #050709;
20
+ $nsw-green-50: #f5fff6;
21
+ $nsw-green-100: #ecfdee;
22
+ $nsw-green-150: #e4fce7;
23
+ $nsw-green-200: #dbfadf;
24
+ $nsw-green-250: #cff7d4;
25
+ $nsw-green-300: #c2f4c9;
26
+ $nsw-green-350: #b5f0be;
27
+ $nsw-green-400: #a8edb3;
28
+ $nsw-green-450: #8adc98;
29
+ $nsw-green-500: #6acc7d;
30
+ $nsw-green-550: #45bb62;
31
+ $nsw-green-600: #00aa45;
32
+ $nsw-green-650: #078e32;
33
+ $nsw-green-700: #077320;
34
+ $nsw-green-750: #03590f;
35
+ $nsw-green-800: #004000;
36
+ $nsw-green-850: #003000;
37
+ $nsw-green-900: #002000;
38
+ $nsw-green-950: #001100;
39
+ $nsw-teal-50: #f2fbfa;
40
+ $nsw-teal-100: #e7f7f5;
41
+ $nsw-teal-150: #dcf2ef;
42
+ $nsw-teal-200: #d1eeea;
43
+ $nsw-teal-250: #c1eae7;
44
+ $nsw-teal-300: #b0e5e5;
45
+ $nsw-teal-350: #9ee0e5;
46
+ $nsw-teal-400: #8cdbe5;
47
+ $nsw-teal-450: #75c4cf;
48
+ $nsw-teal-500: #5eacb9;
49
+ $nsw-teal-550: #4696a3;
50
+ $nsw-teal-600: #2e808e;
51
+ $nsw-teal-650: #256f7b;
52
+ $nsw-teal-700: #1c5f69;
53
+ $nsw-teal-750: #144e58;
54
+ $nsw-teal-800: #0b3f47;
55
+ $nsw-teal-850: #042f35;
56
+ $nsw-teal-900: #011f24;
57
+ $nsw-teal-950: #001114;
58
+ $nsw-blue-50: #f0fbff;
59
+ $nsw-blue-100: #e4f6ff;
60
+ $nsw-blue-150: #d7f2fe;
61
+ $nsw-blue-200: #cbedfd;
62
+ $nsw-blue-250: #bceafe;
63
+ $nsw-blue-300: #ade7ff;
64
+ $nsw-blue-350: #9de3ff;
65
+ $nsw-blue-400: #8ce0ff;
66
+ $nsw-blue-450: #5ac9ff;
67
+ $nsw-blue-500: #26aeff;
68
+ $nsw-blue-550: #008fff;
69
+ $nsw-blue-600: #146cfd;
70
+ $nsw-blue-650: #0c5ad4;
71
+ $nsw-blue-700: #0548ad;
72
+ $nsw-blue-750: #023688;
73
+ $nsw-blue-800: #002664;
74
+ $nsw-blue-850: #001a4d;
75
+ $nsw-blue-900: #001037;
76
+ $nsw-blue-950: #000622;
77
+ $nsw-purple-50: #f9f7ff;
78
+ $nsw-purple-100: #f2f0ff;
79
+ $nsw-purple-150: #ece8fe;
80
+ $nsw-purple-200: #e6e1fd;
81
+ $nsw-purple-250: #e0d9fe;
82
+ $nsw-purple-300: #dad0fe;
83
+ $nsw-purple-350: #d4c8ff;
84
+ $nsw-purple-400: #cebfff;
85
+ $nsw-purple-450: #baa6fc;
86
+ $nsw-purple-500: #a68df9;
87
+ $nsw-purple-550: #9372f5;
88
+ $nsw-purple-600: #8055f1;
89
+ $nsw-purple-650: #7243cf;
90
+ $nsw-purple-700: #6432ae;
91
+ $nsw-purple-750: #54218e;
92
+ $nsw-purple-800: #441170;
93
+ $nsw-purple-850: #330856;
94
+ $nsw-purple-900: #23023e;
95
+ $nsw-purple-950: #130027;
96
+ $nsw-fuchsia-50: #fff6fd;
97
+ $nsw-fuchsia-100: #ffeef9;
98
+ $nsw-fuchsia-150: #fee6f5;
99
+ $nsw-fuchsia-200: #fddef2;
100
+ $nsw-fuchsia-250: #fbd4ef;
101
+ $nsw-fuchsia-300: #f9c9eb;
102
+ $nsw-fuchsia-350: #f7bfe9;
103
+ $nsw-fuchsia-400: #f4b5e6;
104
+ $nsw-fuchsia-450: #ef96da;
105
+ $nsw-fuchsia-500: #e975cc;
106
+ $nsw-fuchsia-550: #e150be;
107
+ $nsw-fuchsia-600: #d912ae;
108
+ $nsw-fuchsia-650: #bb0c94;
109
+ $nsw-fuchsia-700: #9d067b;
110
+ $nsw-fuchsia-750: #810264;
111
+ $nsw-fuchsia-800: #65004d;
112
+ $nsw-fuchsia-850: #4d003a;
113
+ $nsw-fuchsia-900: #370028;
114
+ $nsw-fuchsia-950: #220017;
115
+ $nsw-red-50: #fff8f9;
116
+ $nsw-red-100: #fff2f4;
117
+ $nsw-red-150: #ffecef;
118
+ $nsw-red-200: #ffe6ea;
119
+ $nsw-red-250: #ffdbe0;
120
+ $nsw-red-300: #ffcfd6;
121
+ $nsw-red-350: #ffc4cc;
122
+ $nsw-red-400: #ffb8c1;
123
+ $nsw-red-450: #f897a2;
124
+ $nsw-red-500: #ef7581;
125
+ $nsw-red-550: #e44f5f;
126
+ $nsw-red-600: #d7153a;
127
+ $nsw-red-650: #b90e32;
128
+ $nsw-red-700: #9b072a;
129
+ $nsw-red-750: #7e0322;
130
+ $nsw-red-800: #630019;
131
+ $nsw-red-850: #4c0010;
132
+ $nsw-red-900: #360008;
133
+ $nsw-red-950: #210003;
134
+ $nsw-orange-50: #fffaf6;
135
+ $nsw-orange-100: #fff6ee;
136
+ $nsw-orange-150: #fef1e7;
137
+ $nsw-orange-200: #fdeddf;
138
+ $nsw-orange-250: #fee5ce;
139
+ $nsw-orange-300: #ffddbd;
140
+ $nsw-orange-350: #ffd6ab;
141
+ $nsw-orange-400: #ffce99;
142
+ $nsw-orange-450: #fdb678;
143
+ $nsw-orange-500: #fb9d58;
144
+ $nsw-orange-550: #f78139;
145
+ $nsw-orange-600: #f3631b;
146
+ $nsw-orange-650: #db5115;
147
+ $nsw-orange-700: #c33f0e;
148
+ $nsw-orange-750: #ab2e06;
149
+ $nsw-orange-800: #941b00;
150
+ $nsw-orange-850: #730f00;
151
+ $nsw-orange-900: #530400;
152
+ $nsw-orange-950: #350000;
153
+ $nsw-yellow-50: #fffcf0;
154
+ $nsw-yellow-100: #fffae5;
155
+ $nsw-yellow-150: #fff7da;
156
+ $nsw-yellow-200: #fff4cf;
157
+ $nsw-yellow-250: #fff1c2;
158
+ $nsw-yellow-300: #feeeb5;
159
+ $nsw-yellow-350: #feeaa8;
160
+ $nsw-yellow-400: #fde79a;
161
+ $nsw-yellow-450: #fbda80;
162
+ $nsw-yellow-500: #facd63;
163
+ $nsw-yellow-550: #fabe42;
164
+ $nsw-yellow-600: #faaf05;
165
+ $nsw-yellow-650: #d49402;
166
+ $nsw-yellow-700: #af7a01;
167
+ $nsw-yellow-750: #8b6000;
168
+ $nsw-yellow-800: #694800;
169
+ $nsw-yellow-850: #503500;
170
+ $nsw-yellow-900: #392400;
171
+ $nsw-yellow-950: #221300;
172
+ $nsw-brown-50: #fbf8f4;
173
+ $nsw-brown-100: #f6f1ea;
174
+ $nsw-brown-150: #f2eae1;
175
+ $nsw-brown-200: #ede3d7;
176
+ $nsw-brown-250: #ecdece;
177
+ $nsw-brown-300: #eadac6;
178
+ $nsw-brown-350: #e9d5bd;
179
+ $nsw-brown-400: #e8d0b5;
180
+ $nsw-brown-450: #dbbf9f;
181
+ $nsw-brown-500: #cfae89;
182
+ $nsw-brown-550: #c29d73;
183
+ $nsw-brown-600: #b68d5d;
184
+ $nsw-brown-650: #9c764b;
185
+ $nsw-brown-700: #82603a;
186
+ $nsw-brown-750: #6a4b29;
187
+ $nsw-brown-800: #523719;
188
+ $nsw-brown-850: #3e280f;
189
+ $nsw-brown-900: #2b1a07;
190
+ $nsw-brown-950: #190d02;