@nswds/tokens 2.3.0 → 2.4.1

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 (121) hide show
  1. package/dist/css/colors/global/hex.css +192 -0
  2. package/dist/css/colors/global/hsl.css +192 -0
  3. package/dist/css/colors/global/oklch.css +192 -0
  4. package/dist/css/colors/global/rgb.css +192 -0
  5. package/dist/css/colors/themes/masterbrand/hex.css +2 -0
  6. package/dist/css/colors/themes/masterbrand/hsl.css +2 -0
  7. package/dist/css/colors/themes/masterbrand/oklch.css +2 -0
  8. package/dist/css/colors/themes/masterbrand/rgb.css +2 -0
  9. package/dist/{index.mjs → index.cjs} +1208 -1242
  10. package/dist/index.cjs.map +1 -0
  11. package/dist/index.js +1194 -1252
  12. package/dist/index.js.map +1 -1
  13. package/dist/js/colors/global/hex.js +210 -0
  14. package/dist/js/colors/global/hsl.js +210 -0
  15. package/dist/js/colors/global/oklch.js +210 -0
  16. package/dist/js/colors/global/rgb.js +210 -0
  17. package/dist/js/colors/themes/masterbrand/hex.js +72 -0
  18. package/dist/js/colors/themes/masterbrand/hsl.js +72 -0
  19. package/dist/js/colors/themes/masterbrand/oklch.js +72 -0
  20. package/dist/js/colors/themes/masterbrand/rgb.js +72 -0
  21. package/dist/json/colors/global/hex.json +1 -0
  22. package/dist/json/colors/global/hsl.json +1 -0
  23. package/dist/json/colors/global/oklch.json +1 -0
  24. package/dist/json/colors/global/rgb.json +1 -0
  25. package/dist/json/colors/themes/masterbrand/hex.json +1 -0
  26. package/dist/json/colors/themes/masterbrand/hsl.json +1 -0
  27. package/dist/json/colors/themes/masterbrand/oklch.json +1 -0
  28. package/dist/json/colors/themes/masterbrand/rgb.json +1 -0
  29. package/dist/less/colors/global/hex.less +0 -0
  30. package/dist/less/colors/global/hsl.less +0 -0
  31. package/dist/less/colors/global/oklch.less +0 -0
  32. package/dist/less/colors/global/rgb.less +0 -0
  33. package/dist/less/colors/themes/masterbrand/hex.less +0 -0
  34. package/dist/less/colors/themes/masterbrand/hsl.less +0 -0
  35. package/dist/less/colors/themes/masterbrand/oklch.less +0 -0
  36. package/dist/less/colors/themes/masterbrand/rgb.less +0 -0
  37. package/dist/scss/colors/global/hex.scss +190 -0
  38. package/dist/scss/colors/global/hsl.scss +190 -0
  39. package/dist/scss/colors/global/oklch.scss +190 -0
  40. package/dist/scss/colors/global/rgb.scss +190 -0
  41. package/dist/scss/colors/themes/masterbrand/hex.scss +56 -0
  42. package/dist/scss/colors/themes/masterbrand/hsl.scss +56 -0
  43. package/dist/scss/colors/themes/masterbrand/oklch.scss +56 -0
  44. package/dist/scss/colors/themes/masterbrand/rgb.scss +56 -0
  45. package/dist/tailwind/colors/global/hex.css +192 -0
  46. package/dist/tailwind/colors/global/hsl.css +192 -0
  47. package/dist/tailwind/colors/global/oklch.css +192 -0
  48. package/dist/tailwind/colors/global/rgb.css +192 -0
  49. package/dist/tailwind/colors/themes/masterbrand/hex.css +58 -0
  50. package/dist/tailwind/colors/themes/masterbrand/hsl.css +58 -0
  51. package/dist/tailwind/colors/themes/masterbrand/oklch.css +58 -0
  52. package/dist/tailwind/colors/themes/masterbrand/rgb.css +58 -0
  53. package/dist/ts/colors/global/hex.ts +210 -0
  54. package/dist/ts/colors/global/hsl.ts +210 -0
  55. package/dist/ts/colors/global/oklch.ts +210 -0
  56. package/dist/ts/colors/global/rgb.ts +210 -0
  57. package/dist/ts/colors/themes/masterbrand/hex.ts +72 -0
  58. package/dist/ts/colors/themes/masterbrand/hsl.ts +72 -0
  59. package/dist/ts/colors/themes/masterbrand/oklch.ts +72 -0
  60. package/dist/ts/colors/themes/masterbrand/rgb.ts +72 -0
  61. package/package.json +12 -7
  62. package/src/css/colors/global/hex.css +192 -0
  63. package/src/css/colors/global/hsl.css +192 -0
  64. package/src/css/colors/global/oklch.css +192 -0
  65. package/src/css/colors/global/rgb.css +192 -0
  66. package/src/css/colors/themes/masterbrand/hex.css +2 -0
  67. package/src/css/colors/themes/masterbrand/hsl.css +2 -0
  68. package/src/css/colors/themes/masterbrand/oklch.css +2 -0
  69. package/src/css/colors/themes/masterbrand/rgb.css +2 -0
  70. package/src/index.ts +296 -0
  71. package/src/js/colors/global/hex.js +210 -0
  72. package/src/js/colors/global/hsl.js +210 -0
  73. package/src/js/colors/global/oklch.js +210 -0
  74. package/src/js/colors/global/rgb.js +210 -0
  75. package/src/js/colors/themes/masterbrand/hex.js +72 -0
  76. package/src/js/colors/themes/masterbrand/hsl.js +72 -0
  77. package/src/js/colors/themes/masterbrand/oklch.js +72 -0
  78. package/src/js/colors/themes/masterbrand/rgb.js +72 -0
  79. package/src/json/colors/global/hex.json +1 -0
  80. package/src/json/colors/global/hsl.json +1 -0
  81. package/src/json/colors/global/oklch.json +1 -0
  82. package/src/json/colors/global/rgb.json +1 -0
  83. package/src/json/colors/themes/masterbrand/hex.json +1 -0
  84. package/src/json/colors/themes/masterbrand/hsl.json +1 -0
  85. package/src/json/colors/themes/masterbrand/oklch.json +1 -0
  86. package/src/json/colors/themes/masterbrand/rgb.json +1 -0
  87. package/src/less/colors/global/hex.less +0 -0
  88. package/src/less/colors/global/hsl.less +0 -0
  89. package/src/less/colors/global/oklch.less +0 -0
  90. package/src/less/colors/global/rgb.less +0 -0
  91. package/src/less/colors/themes/masterbrand/hex.less +0 -0
  92. package/src/less/colors/themes/masterbrand/hsl.less +0 -0
  93. package/src/less/colors/themes/masterbrand/oklch.less +0 -0
  94. package/src/less/colors/themes/masterbrand/rgb.less +0 -0
  95. package/src/scss/colors/global/hex.scss +190 -0
  96. package/src/scss/colors/global/hsl.scss +190 -0
  97. package/src/scss/colors/global/oklch.scss +190 -0
  98. package/src/scss/colors/global/rgb.scss +190 -0
  99. package/src/scss/colors/themes/masterbrand/hex.scss +56 -0
  100. package/src/scss/colors/themes/masterbrand/hsl.scss +56 -0
  101. package/src/scss/colors/themes/masterbrand/oklch.scss +56 -0
  102. package/src/scss/colors/themes/masterbrand/rgb.scss +56 -0
  103. package/src/tailwind/colors/global/hex.css +192 -0
  104. package/src/tailwind/colors/global/hsl.css +192 -0
  105. package/src/tailwind/colors/global/oklch.css +192 -0
  106. package/src/tailwind/colors/global/rgb.css +192 -0
  107. package/src/tailwind/colors/themes/masterbrand/hex.css +58 -0
  108. package/src/tailwind/colors/themes/masterbrand/hsl.css +58 -0
  109. package/src/tailwind/colors/themes/masterbrand/oklch.css +58 -0
  110. package/src/tailwind/colors/themes/masterbrand/rgb.css +58 -0
  111. package/src/ts/colors/global/hex.ts +210 -0
  112. package/src/ts/colors/global/hsl.ts +210 -0
  113. package/src/ts/colors/global/oklch.ts +210 -0
  114. package/src/ts/colors/global/rgb.ts +210 -0
  115. package/src/ts/colors/themes/masterbrand/hex.ts +72 -0
  116. package/src/ts/colors/themes/masterbrand/hsl.ts +72 -0
  117. package/src/ts/colors/themes/masterbrand/oklch.ts +72 -0
  118. package/src/ts/colors/themes/masterbrand/rgb.ts +72 -0
  119. package/src/types.d.ts +27 -0
  120. package/dist/index.mjs.map +0 -1
  121. /package/dist/{index.d.mts → index.d.cts} +0 -0
@@ -0,0 +1,192 @@
1
+ @theme {
2
+ --color-nsw-grey-50: oklch(0.985025 0 0);
3
+ --color-nsw-grey-100: oklch(0.9700500000000001 0 0);
4
+ --color-nsw-grey-150: oklch(0.955075 0 0);
5
+ --color-nsw-grey-200: oklch(0.9401 0 0);
6
+ --color-nsw-grey-250: oklch(0.9208500000000001 0.0019500000000000003 327.2175);
7
+ --color-nsw-grey-300: oklch(0.9016 0.0039 294.435);
8
+ --color-nsw-grey-350: oklch(0.88235 0.005849999999999999 261.65250000000003);
9
+ --color-nsw-grey-400: oklch(0.8631 0.0078 228.87);
10
+ --color-nsw-grey-450: oklch(0.753925 0.00865 229.8075);
11
+ --color-nsw-grey-500: oklch(0.6447499999999999 0.0095 230.745);
12
+ --color-nsw-grey-550: oklch(0.535575 0.01035 231.6825);
13
+ --color-nsw-grey-600: oklch(0.4264 0.0112 232.62);
14
+ --color-nsw-grey-650: oklch(0.38715 0.011 234.985);
15
+ --color-nsw-grey-700: oklch(0.3479 0.0108 237.35000000000002);
16
+ --color-nsw-grey-750: oklch(0.30865 0.0106 239.715);
17
+ --color-nsw-grey-800: oklch(0.2694 0.0104 242.08);
18
+ --color-nsw-grey-850: oklch(0.22225499999999998 0.00884 242.08);
19
+ --color-nsw-grey-900: oklch(0.17511 0.00728 242.08);
20
+ --color-nsw-grey-950: oklch(0.127965 0.005719999999999999 242.08);
21
+ --color-nsw-green-50: oklch(0.988875 0.015697500000000003 148.9);
22
+ --color-nsw-green-100: oklch(0.97775 0.026565000000000002 148.9);
23
+ --color-nsw-green-150: oklch(0.9666250000000001 0.0374325 148.9);
24
+ --color-nsw-green-200: oklch(0.9555 0.0483 148.9);
25
+ --color-nsw-green-250: oklch(0.937925 0.06255 148.8825);
26
+ --color-nsw-green-300: oklch(0.92035 0.07680000000000001 148.865);
27
+ --color-nsw-green-350: oklch(0.902775 0.09105 148.84750000000003);
28
+ --color-nsw-green-400: oklch(0.8852 0.1053 148.83);
29
+ --color-nsw-green-450: oklch(0.82485 0.12524275 148.6891);
30
+ --color-nsw-green-500: oklch(0.7645 0.14518550000000002 148.5482);
31
+ --color-nsw-green-550: oklch(0.70415 0.16512825 148.40730000000002);
32
+ --color-nsw-green-600: oklch(0.6438 0.185071 148.2664);
33
+ --color-nsw-green-650: oklch(0.5633250000000001 0.16617825000000003 146.8248);
34
+ --color-nsw-green-700: oklch(0.48285 0.1472855 145.3832);
35
+ --color-nsw-green-750: oklch(0.40237500000000004 0.12839275 143.9416);
36
+ --color-nsw-green-800: oklch(0.3219 0.1095 142.5);
37
+ --color-nsw-green-850: oklch(0.2655675 0.093075 142.5);
38
+ --color-nsw-green-900: oklch(0.209235 0.07665 142.5);
39
+ --color-nsw-green-950: oklch(0.1529025 0.060225 142.5);
40
+ --color-nsw-teal-50: oklch(0.98175 0.010009999999999998 186.59);
41
+ --color-nsw-teal-100: oklch(0.9635 0.01694 186.59);
42
+ --color-nsw-teal-150: oklch(0.94525 0.023870000000000002 186.59);
43
+ --color-nsw-teal-200: oklch(0.927 0.0308 186.59);
44
+ --color-nsw-teal-250: oklch(0.9062250000000001 0.042775 191.435);
45
+ --color-nsw-teal-300: oklch(0.8854500000000001 0.05475000000000001 196.28);
46
+ --color-nsw-teal-350: oklch(0.864675 0.066725 201.125);
47
+ --color-nsw-teal-400: oklch(0.8439 0.0787 205.97);
48
+ --color-nsw-teal-450: oklch(0.772075 0.079075 207.2);
49
+ --color-nsw-teal-500: oklch(0.70025 0.07944999999999999 208.43);
50
+ --color-nsw-teal-550: oklch(0.628425 0.079825 209.66);
51
+ --color-nsw-teal-600: oklch(0.5566 0.0802 210.89);
52
+ --color-nsw-teal-650: oklch(0.5022249999999999 0.073475 210.7425);
53
+ --color-nsw-teal-700: oklch(0.44784999999999997 0.06675 210.595);
54
+ --color-nsw-teal-750: oklch(0.393475 0.060024999999999995 210.4475);
55
+ --color-nsw-teal-800: oklch(0.3391 0.0533 210.3);
56
+ --color-nsw-teal-850: oklch(0.2797575 0.045305 210.3);
57
+ --color-nsw-teal-900: oklch(0.22041500000000003 0.037309999999999996 210.3);
58
+ --color-nsw-teal-950: oklch(0.1610725 0.029315 210.3);
59
+ --color-nsw-blue-50: oklch(0.981675 0.013552500000000002 227.89);
60
+ --color-nsw-blue-100: oklch(0.9633499999999999 0.022935 227.89);
61
+ --color-nsw-blue-150: oklch(0.945025 0.0323175 227.89);
62
+ --color-nsw-blue-200: oklch(0.9267 0.0417 227.89);
63
+ --color-nsw-blue-250: oklch(0.9110499999999999 0.0543 226.8175);
64
+ --color-nsw-blue-300: oklch(0.8954 0.0669 225.745);
65
+ --color-nsw-blue-350: oklch(0.87975 0.0795 224.67249999999999);
66
+ --color-nsw-blue-400: oklch(0.8641 0.0921 223.6);
67
+ --color-nsw-blue-450: oklch(0.7918499999999999 0.126525 232.89);
68
+ --color-nsw-blue-500: oklch(0.7196 0.16095 242.18);
69
+ --color-nsw-blue-550: oklch(0.64735 0.19537500000000002 251.47);
70
+ --color-nsw-blue-600: oklch(0.5751 0.2298 260.76);
71
+ --color-nsw-blue-650: oklch(0.503825 0.201675 260.53);
72
+ --color-nsw-blue-700: oklch(0.43255 0.17355 260.29999999999995);
73
+ --color-nsw-blue-750: oklch(0.36127499999999996 0.145425 260.07);
74
+ --color-nsw-blue-800: oklch(0.29 0.1173 259.84);
75
+ --color-nsw-blue-850: oklch(0.23925 0.099705 259.84);
76
+ --color-nsw-blue-900: oklch(0.1885 0.08211 259.84);
77
+ --color-nsw-blue-950: oklch(0.13774999999999998 0.064515 259.84);
78
+ --color-nsw-purple-50: oklch(0.98055 0.012382500000000001 293.83);
79
+ --color-nsw-purple-100: oklch(0.9611000000000001 0.020955 293.83);
80
+ --color-nsw-purple-150: oklch(0.94165 0.0295275 293.83);
81
+ --color-nsw-purple-200: oklch(0.9222 0.0381 293.83);
82
+ --color-nsw-purple-250: oklch(0.901375 0.050975 294.15999999999997);
83
+ --color-nsw-purple-300: oklch(0.8805499999999999 0.06385 294.49);
84
+ --color-nsw-purple-350: oklch(0.859725 0.076725 294.82);
85
+ --color-nsw-purple-400: oklch(0.8389 0.0896 295.15);
86
+ --color-nsw-purple-450: oklch(0.7746 0.12259999999999999 293.98749999999995);
87
+ --color-nsw-purple-500: oklch(0.7102999999999999 0.1556 292.825);
88
+ --color-nsw-purple-550: oklch(0.646 0.1886 291.6625);
89
+ --color-nsw-purple-600: oklch(0.5817 0.2216 290.5);
90
+ --color-nsw-purple-650: oklch(0.516975 0.203425 293.5575);
91
+ --color-nsw-purple-700: oklch(0.45225 0.18525 296.615);
92
+ --color-nsw-purple-750: oklch(0.387525 0.167075 299.6725);
93
+ --color-nsw-purple-800: oklch(0.3228 0.1489 302.73);
94
+ --color-nsw-purple-850: oklch(0.26631 0.126565 302.73);
95
+ --color-nsw-purple-900: oklch(0.20982 0.10423 302.73);
96
+ --color-nsw-purple-950: oklch(0.15333 0.081895 302.73);
97
+ --color-nsw-fuchsia-50: oklch(0.98295 0.013909999999999999 339.13);
98
+ --color-nsw-fuchsia-100: oklch(0.9659 0.02354 339.13);
99
+ --color-nsw-fuchsia-150: oklch(0.94885 0.03317 339.13);
100
+ --color-nsw-fuchsia-200: oklch(0.9318 0.0428 339.13);
101
+ --color-nsw-fuchsia-250: oklch(0.9103 0.05615 337.975);
102
+ --color-nsw-fuchsia-300: oklch(0.8888 0.06949999999999999 336.82);
103
+ --color-nsw-fuchsia-350: oklch(0.8673 0.08285 335.66499999999996);
104
+ --color-nsw-fuchsia-400: oklch(0.8458 0.0962 334.51);
105
+ --color-nsw-fuchsia-450: oklch(0.784675 0.1357 335.945);
106
+ --color-nsw-fuchsia-500: oklch(0.7235499999999999 0.1752 337.38);
107
+ --color-nsw-fuchsia-550: oklch(0.6624249999999999 0.2147 338.815);
108
+ --color-nsw-fuchsia-600: oklch(0.6013 0.2542 340.25);
109
+ --color-nsw-fuchsia-650: oklch(0.536125 0.22736275 340.61402499999997);
110
+ --color-nsw-fuchsia-700: oklch(0.47095 0.2005255 340.97805);
111
+ --color-nsw-fuchsia-750: oklch(0.405775 0.17368825 341.342075);
112
+ --color-nsw-fuchsia-800: oklch(0.3406 0.146851 341.7061);
113
+ --color-nsw-fuchsia-850: oklch(0.280995 0.12482335 341.7061);
114
+ --color-nsw-fuchsia-900: oklch(0.22139000000000003 0.10279570000000002 341.7061);
115
+ --color-nsw-fuchsia-950: oklch(0.161785 0.08076805000000001 341.7061);
116
+ --color-nsw-red-50: oklch(0.986575 0.009035000000000001 6.65);
117
+ --color-nsw-red-100: oklch(0.97315 0.01529 6.65);
118
+ --color-nsw-red-150: oklch(0.959725 0.021544999999999998 6.65);
119
+ --color-nsw-red-200: oklch(0.9463 0.0278 6.65);
120
+ --color-nsw-red-250: oklch(0.92245 0.0416 7.630000000000001);
121
+ --color-nsw-red-300: oklch(0.8986000000000001 0.055400000000000005 8.61);
122
+ --color-nsw-red-350: oklch(0.87475 0.0692 9.59);
123
+ --color-nsw-red-400: oklch(0.8509 0.083 10.57);
124
+ --color-nsw-red-450: oklch(0.778675 0.11662499999999999 13.01);
125
+ --color-nsw-red-500: oklch(0.70645 0.15025 15.45);
126
+ --color-nsw-red-550: oklch(0.634225 0.183875 17.89);
127
+ --color-nsw-red-600: oklch(0.562 0.2175 20.33);
128
+ --color-nsw-red-650: oklch(0.50075 0.19485 19.529999999999998);
129
+ --color-nsw-red-700: oklch(0.4395 0.17220000000000002 18.729999999999997);
130
+ --color-nsw-red-750: oklch(0.37825000000000003 0.14955000000000002 17.93);
131
+ --color-nsw-red-800: oklch(0.317 0.1269 17.13);
132
+ --color-nsw-red-850: oklch(0.261525 0.10786500000000002 17.13);
133
+ --color-nsw-red-900: oklch(0.20605 0.08883000000000002 17.13);
134
+ --color-nsw-red-950: oklch(0.15057500000000001 0.06979500000000001 17.13);
135
+ --color-nsw-orange-50: oklch(0.98875 0.0082875 63.74);
136
+ --color-nsw-orange-100: oklch(0.9775 0.014025 63.74);
137
+ --color-nsw-orange-150: oklch(0.9662499999999999 0.0197625 63.74);
138
+ --color-nsw-orange-200: oklch(0.955 0.0255 63.74);
139
+ --color-nsw-orange-250: oklch(0.93675 0.0411 64.9275);
140
+ --color-nsw-orange-300: oklch(0.9185 0.0567 66.115);
141
+ --color-nsw-orange-350: oklch(0.90025 0.0723 67.3025);
142
+ --color-nsw-orange-400: oklch(0.882 0.0879 68.49);
143
+ --color-nsw-orange-450: oklch(0.8301000000000001 0.114025 61.904999999999994);
144
+ --color-nsw-orange-500: oklch(0.7782 0.14015 55.31999999999999);
145
+ --color-nsw-orange-550: oklch(0.7263 0.166275 48.735);
146
+ --color-nsw-orange-600: oklch(0.6744 0.1924 42.15);
147
+ --color-nsw-orange-650: oklch(0.61385 0.18414999999999998 39.8675);
148
+ --color-nsw-orange-700: oklch(0.5533 0.1759 37.585);
149
+ --color-nsw-orange-750: oklch(0.49274999999999997 0.16765 35.3025);
150
+ --color-nsw-orange-800: oklch(0.4322 0.1594 33.02);
151
+ --color-nsw-orange-850: oklch(0.35656499999999997 0.13549 33.02);
152
+ --color-nsw-orange-900: oklch(0.28093 0.11157999999999998 33.02);
153
+ --color-nsw-orange-950: oklch(0.205295 0.08767 33.02);
154
+ --color-nsw-yellow-50: oklch(0.9916 0.016055 93.38);
155
+ --color-nsw-yellow-100: oklch(0.9832000000000001 0.02717 93.38);
156
+ --color-nsw-yellow-150: oklch(0.9748 0.038285 93.38);
157
+ --color-nsw-yellow-200: oklch(0.9664 0.0494 93.38);
158
+ --color-nsw-yellow-250: oklch(0.9570000000000001 0.0618 93.545);
159
+ --color-nsw-yellow-300: oklch(0.9476 0.0742 93.71000000000001);
160
+ --color-nsw-yellow-350: oklch(0.9381999999999999 0.08660000000000001 93.875);
161
+ --color-nsw-yellow-400: oklch(0.9288 0.099 94.04);
162
+ --color-nsw-yellow-450: oklch(0.89785 0.11610000000000001 89.92750000000001);
163
+ --color-nsw-yellow-500: oklch(0.8669 0.13319999999999999 85.815);
164
+ --color-nsw-yellow-550: oklch(0.83595 0.1503 81.7025);
165
+ --color-nsw-yellow-600: oklch(0.805 0.1674 77.59);
166
+ --color-nsw-yellow-650: oklch(0.7105750000000001 0.1477675 77.8622);
167
+ --color-nsw-yellow-700: oklch(0.61615 0.128135 78.1344);
168
+ --color-nsw-yellow-750: oklch(0.521725 0.1085025 78.4066);
169
+ --color-nsw-yellow-800: oklch(0.4273 0.08887 78.6788);
170
+ --color-nsw-yellow-850: oklch(0.35252249999999996 0.07553950000000001 78.6788);
171
+ --color-nsw-yellow-900: oklch(0.277745 0.062209 78.6788);
172
+ --color-nsw-yellow-950: oklch(0.2029675 0.048878500000000005 78.6788);
173
+ --color-nsw-brown-50: oklch(0.980125 0.006337499999999999 72.57);
174
+ --color-nsw-brown-100: oklch(0.96025 0.010725 72.57);
175
+ --color-nsw-brown-150: oklch(0.940375 0.015112500000000001 72.57);
176
+ --color-nsw-brown-200: oklch(0.9205 0.0195 72.57);
177
+ --color-nsw-brown-250: oklch(0.908 0.025875 72.04499999999999);
178
+ --color-nsw-brown-300: oklch(0.8955 0.03225 71.52);
179
+ --color-nsw-brown-350: oklch(0.883 0.038625 70.995);
180
+ --color-nsw-brown-400: oklch(0.8705 0.045 70.47);
181
+ --color-nsw-brown-450: oklch(0.820725 0.054075 70.38);
182
+ --color-nsw-brown-500: oklch(0.77095 0.06315 70.28999999999999);
183
+ --color-nsw-brown-550: oklch(0.721175 0.072225 70.2);
184
+ --color-nsw-brown-600: oklch(0.6714 0.0813 70.11);
185
+ --color-nsw-brown-650: oklch(0.5939 0.0756 69.3125);
186
+ --color-nsw-brown-700: oklch(0.5164 0.0699 68.515);
187
+ --color-nsw-brown-750: oklch(0.4389 0.06420000000000001 67.7175);
188
+ --color-nsw-brown-800: oklch(0.3614 0.0585 66.92);
189
+ --color-nsw-brown-850: oklch(0.298155 0.049725000000000005 66.92);
190
+ --color-nsw-brown-900: oklch(0.23491 0.04095 66.92);
191
+ --color-nsw-brown-950: oklch(0.171665 0.032175 66.92);
192
+ }
@@ -0,0 +1,192 @@
1
+ @theme {
2
+ --color-nsw-grey-50: rgb(250, 250, 250);
3
+ --color-nsw-grey-100: rgb(245, 245, 245);
4
+ --color-nsw-grey-150: rgb(240, 240, 240);
5
+ --color-nsw-grey-200: rgb(235, 235, 235);
6
+ --color-nsw-grey-250: rgb(229, 228, 229);
7
+ --color-nsw-grey-300: rgb(222, 222, 225);
8
+ --color-nsw-grey-350: rgb(214, 216, 220);
9
+ --color-nsw-grey-400: rgb(205, 211, 214);
10
+ --color-nsw-grey-450: rgb(170, 176, 180);
11
+ --color-nsw-grey-500: rgb(136, 143, 146);
12
+ --color-nsw-grey-550: rgb(104, 111, 114);
13
+ --color-nsw-grey-600: rgb(73, 80, 84);
14
+ --color-nsw-grey-650: rgb(63, 69, 73);
15
+ --color-nsw-grey-700: rgb(53, 59, 63);
16
+ --color-nsw-grey-750: rgb(43, 49, 53);
17
+ --color-nsw-grey-800: rgb(34, 39, 43);
18
+ --color-nsw-grey-850: rgb(24, 28, 31);
19
+ --color-nsw-grey-900: rgb(14, 17, 19);
20
+ --color-nsw-grey-950: rgb(5, 7, 9);
21
+ --color-nsw-green-50: rgb(245, 255, 246);
22
+ --color-nsw-green-100: rgb(236, 253, 238);
23
+ --color-nsw-green-150: rgb(228, 252, 231);
24
+ --color-nsw-green-200: rgb(219, 250, 223);
25
+ --color-nsw-green-250: rgb(207, 247, 212);
26
+ --color-nsw-green-300: rgb(194, 244, 201);
27
+ --color-nsw-green-350: rgb(181, 240, 190);
28
+ --color-nsw-green-400: rgb(168, 237, 179);
29
+ --color-nsw-green-450: rgb(138, 220, 152);
30
+ --color-nsw-green-500: rgb(106, 204, 125);
31
+ --color-nsw-green-550: rgb(69, 187, 98);
32
+ --color-nsw-green-600: rgb(0, 170, 69);
33
+ --color-nsw-green-650: rgb(7, 142, 50);
34
+ --color-nsw-green-700: rgb(7, 115, 32);
35
+ --color-nsw-green-750: rgb(3, 89, 15);
36
+ --color-nsw-green-800: rgb(0, 64, 0);
37
+ --color-nsw-green-850: rgb(0, 48, 0);
38
+ --color-nsw-green-900: rgb(0, 32, 0);
39
+ --color-nsw-green-950: rgb(0, 17, 0);
40
+ --color-nsw-teal-50: rgb(242, 251, 250);
41
+ --color-nsw-teal-100: rgb(231, 247, 245);
42
+ --color-nsw-teal-150: rgb(220, 242, 239);
43
+ --color-nsw-teal-200: rgb(209, 238, 234);
44
+ --color-nsw-teal-250: rgb(193, 234, 231);
45
+ --color-nsw-teal-300: rgb(176, 229, 229);
46
+ --color-nsw-teal-350: rgb(158, 224, 229);
47
+ --color-nsw-teal-400: rgb(140, 219, 229);
48
+ --color-nsw-teal-450: rgb(117, 196, 207);
49
+ --color-nsw-teal-500: rgb(94, 172, 185);
50
+ --color-nsw-teal-550: rgb(70, 150, 163);
51
+ --color-nsw-teal-600: rgb(46, 128, 142);
52
+ --color-nsw-teal-650: rgb(37, 111, 123);
53
+ --color-nsw-teal-700: rgb(28, 95, 105);
54
+ --color-nsw-teal-750: rgb(20, 78, 88);
55
+ --color-nsw-teal-800: rgb(11, 63, 71);
56
+ --color-nsw-teal-850: rgb(4, 47, 53);
57
+ --color-nsw-teal-900: rgb(1, 31, 36);
58
+ --color-nsw-teal-950: rgb(0, 17, 20);
59
+ --color-nsw-blue-50: rgb(240, 251, 255);
60
+ --color-nsw-blue-100: rgb(228, 246, 255);
61
+ --color-nsw-blue-150: rgb(215, 242, 254);
62
+ --color-nsw-blue-200: rgb(203, 237, 253);
63
+ --color-nsw-blue-250: rgb(188, 234, 254);
64
+ --color-nsw-blue-300: rgb(173, 231, 255);
65
+ --color-nsw-blue-350: rgb(157, 227, 255);
66
+ --color-nsw-blue-400: rgb(140, 224, 255);
67
+ --color-nsw-blue-450: rgb(90, 201, 255);
68
+ --color-nsw-blue-500: rgb(38, 174, 255);
69
+ --color-nsw-blue-550: rgb(0, 143, 255);
70
+ --color-nsw-blue-600: rgb(20, 108, 253);
71
+ --color-nsw-blue-650: rgb(12, 90, 212);
72
+ --color-nsw-blue-700: rgb(5, 72, 173);
73
+ --color-nsw-blue-750: rgb(2, 54, 136);
74
+ --color-nsw-blue-800: rgb(0, 38, 100);
75
+ --color-nsw-blue-850: rgb(0, 26, 77);
76
+ --color-nsw-blue-900: rgb(0, 16, 55);
77
+ --color-nsw-blue-950: rgb(0, 6, 34);
78
+ --color-nsw-purple-50: rgb(249, 247, 255);
79
+ --color-nsw-purple-100: rgb(242, 240, 255);
80
+ --color-nsw-purple-150: rgb(236, 232, 254);
81
+ --color-nsw-purple-200: rgb(230, 225, 253);
82
+ --color-nsw-purple-250: rgb(224, 217, 254);
83
+ --color-nsw-purple-300: rgb(218, 208, 254);
84
+ --color-nsw-purple-350: rgb(212, 200, 255);
85
+ --color-nsw-purple-400: rgb(206, 191, 255);
86
+ --color-nsw-purple-450: rgb(186, 166, 252);
87
+ --color-nsw-purple-500: rgb(166, 141, 249);
88
+ --color-nsw-purple-550: rgb(147, 114, 245);
89
+ --color-nsw-purple-600: rgb(128, 85, 241);
90
+ --color-nsw-purple-650: rgb(114, 67, 207);
91
+ --color-nsw-purple-700: rgb(100, 50, 174);
92
+ --color-nsw-purple-750: rgb(84, 33, 142);
93
+ --color-nsw-purple-800: rgb(68, 17, 112);
94
+ --color-nsw-purple-850: rgb(51, 8, 86);
95
+ --color-nsw-purple-900: rgb(35, 2, 62);
96
+ --color-nsw-purple-950: rgb(19, 0, 39);
97
+ --color-nsw-fuchsia-50: rgb(255, 246, 253);
98
+ --color-nsw-fuchsia-100: rgb(255, 238, 249);
99
+ --color-nsw-fuchsia-150: rgb(254, 230, 245);
100
+ --color-nsw-fuchsia-200: rgb(253, 222, 242);
101
+ --color-nsw-fuchsia-250: rgb(251, 212, 239);
102
+ --color-nsw-fuchsia-300: rgb(249, 201, 235);
103
+ --color-nsw-fuchsia-350: rgb(247, 191, 233);
104
+ --color-nsw-fuchsia-400: rgb(244, 181, 230);
105
+ --color-nsw-fuchsia-450: rgb(239, 150, 218);
106
+ --color-nsw-fuchsia-500: rgb(233, 117, 204);
107
+ --color-nsw-fuchsia-550: rgb(225, 80, 190);
108
+ --color-nsw-fuchsia-600: rgb(217, 18, 174);
109
+ --color-nsw-fuchsia-650: rgb(187, 12, 148);
110
+ --color-nsw-fuchsia-700: rgb(157, 6, 123);
111
+ --color-nsw-fuchsia-750: rgb(129, 2, 100);
112
+ --color-nsw-fuchsia-800: rgb(101, 0, 77);
113
+ --color-nsw-fuchsia-850: rgb(77, 0, 58);
114
+ --color-nsw-fuchsia-900: rgb(55, 0, 40);
115
+ --color-nsw-fuchsia-950: rgb(34, 0, 23);
116
+ --color-nsw-red-50: rgb(255, 248, 249);
117
+ --color-nsw-red-100: rgb(255, 242, 244);
118
+ --color-nsw-red-150: rgb(255, 236, 239);
119
+ --color-nsw-red-200: rgb(255, 230, 234);
120
+ --color-nsw-red-250: rgb(255, 219, 224);
121
+ --color-nsw-red-300: rgb(255, 207, 214);
122
+ --color-nsw-red-350: rgb(255, 196, 204);
123
+ --color-nsw-red-400: rgb(255, 184, 193);
124
+ --color-nsw-red-450: rgb(248, 151, 162);
125
+ --color-nsw-red-500: rgb(239, 117, 129);
126
+ --color-nsw-red-550: rgb(228, 79, 95);
127
+ --color-nsw-red-600: rgb(215, 21, 58);
128
+ --color-nsw-red-650: rgb(185, 14, 50);
129
+ --color-nsw-red-700: rgb(155, 7, 42);
130
+ --color-nsw-red-750: rgb(126, 3, 34);
131
+ --color-nsw-red-800: rgb(99, 0, 25);
132
+ --color-nsw-red-850: rgb(76, 0, 16);
133
+ --color-nsw-red-900: rgb(54, 0, 8);
134
+ --color-nsw-red-950: rgb(33, 0, 3);
135
+ --color-nsw-orange-50: rgb(255, 250, 246);
136
+ --color-nsw-orange-100: rgb(255, 246, 238);
137
+ --color-nsw-orange-150: rgb(254, 241, 231);
138
+ --color-nsw-orange-200: rgb(253, 237, 223);
139
+ --color-nsw-orange-250: rgb(254, 229, 206);
140
+ --color-nsw-orange-300: rgb(255, 221, 189);
141
+ --color-nsw-orange-350: rgb(255, 214, 171);
142
+ --color-nsw-orange-400: rgb(255, 206, 153);
143
+ --color-nsw-orange-450: rgb(253, 182, 120);
144
+ --color-nsw-orange-500: rgb(251, 157, 88);
145
+ --color-nsw-orange-550: rgb(247, 129, 57);
146
+ --color-nsw-orange-600: rgb(243, 99, 27);
147
+ --color-nsw-orange-650: rgb(219, 81, 21);
148
+ --color-nsw-orange-700: rgb(195, 63, 14);
149
+ --color-nsw-orange-750: rgb(171, 46, 6);
150
+ --color-nsw-orange-800: rgb(148, 27, 0);
151
+ --color-nsw-orange-850: rgb(115, 15, 0);
152
+ --color-nsw-orange-900: rgb(83, 4, 0);
153
+ --color-nsw-orange-950: rgb(53, 0, 0);
154
+ --color-nsw-yellow-50: rgb(255, 252, 240);
155
+ --color-nsw-yellow-100: rgb(255, 250, 229);
156
+ --color-nsw-yellow-150: rgb(255, 247, 218);
157
+ --color-nsw-yellow-200: rgb(255, 244, 207);
158
+ --color-nsw-yellow-250: rgb(255, 241, 194);
159
+ --color-nsw-yellow-300: rgb(254, 238, 181);
160
+ --color-nsw-yellow-350: rgb(254, 234, 168);
161
+ --color-nsw-yellow-400: rgb(253, 231, 154);
162
+ --color-nsw-yellow-450: rgb(251, 218, 128);
163
+ --color-nsw-yellow-500: rgb(250, 205, 99);
164
+ --color-nsw-yellow-550: rgb(250, 190, 66);
165
+ --color-nsw-yellow-600: rgb(250, 175, 5);
166
+ --color-nsw-yellow-650: rgb(212, 148, 2);
167
+ --color-nsw-yellow-700: rgb(175, 122, 1);
168
+ --color-nsw-yellow-750: rgb(139, 96, 0);
169
+ --color-nsw-yellow-800: rgb(105, 72, 0);
170
+ --color-nsw-yellow-850: rgb(80, 53, 0);
171
+ --color-nsw-yellow-900: rgb(57, 36, 0);
172
+ --color-nsw-yellow-950: rgb(34, 19, 0);
173
+ --color-nsw-brown-50: rgb(251, 248, 244);
174
+ --color-nsw-brown-100: rgb(246, 241, 234);
175
+ --color-nsw-brown-150: rgb(242, 234, 225);
176
+ --color-nsw-brown-200: rgb(237, 227, 215);
177
+ --color-nsw-brown-250: rgb(236, 222, 206);
178
+ --color-nsw-brown-300: rgb(234, 218, 198);
179
+ --color-nsw-brown-350: rgb(233, 213, 189);
180
+ --color-nsw-brown-400: rgb(232, 208, 181);
181
+ --color-nsw-brown-450: rgb(219, 191, 159);
182
+ --color-nsw-brown-500: rgb(207, 174, 137);
183
+ --color-nsw-brown-550: rgb(194, 157, 115);
184
+ --color-nsw-brown-600: rgb(182, 141, 93);
185
+ --color-nsw-brown-650: rgb(156, 118, 75);
186
+ --color-nsw-brown-700: rgb(130, 96, 58);
187
+ --color-nsw-brown-750: rgb(106, 75, 41);
188
+ --color-nsw-brown-800: rgb(82, 55, 25);
189
+ --color-nsw-brown-850: rgb(62, 40, 15);
190
+ --color-nsw-brown-900: rgb(43, 26, 7);
191
+ --color-nsw-brown-950: rgb(25, 13, 2);
192
+ }
@@ -0,0 +1,58 @@
1
+ @theme inline {
2
+ --color-primary-lightest: #0c5ad4;
3
+ --color-primary-lighter: #0548ad;
4
+ --color-primary-light: #023688;
5
+ --color-primary: #002664;
6
+ --color-primary-dark: #001a4d;
7
+ --color-primary-darker: #001037;
8
+ --color-primary-darkest: #000622;
9
+ --color-secondary-lightest: #f0fbff;
10
+ --color-secondary-lighter: #e4f6ff;
11
+ --color-secondary-light: #d7f2fe;
12
+ --color-secondary: #cbedfd;
13
+ --color-secondary-dark: #bceafe;
14
+ --color-secondary-darker: #ade7ff;
15
+ --color-secondary-darkest: #9de3ff;
16
+ --color-tertiary-lightest: #5ac9ff;
17
+ --color-tertiary-lighter: #26aeff;
18
+ --color-tertiary-light: #008fff;
19
+ --color-tertiary: #146cfd;
20
+ --color-tertiary-dark: #0c5ad4;
21
+ --color-tertiary-darker: #0548ad;
22
+ --color-tertiary-darkest: #023688;
23
+ --color-accent-lightest: #f897a2;
24
+ --color-accent-lighter: #ef7581;
25
+ --color-accent-light: #e44f5f;
26
+ --color-accent: #d7153a;
27
+ --color-accent-dark: #b90e32;
28
+ --color-accent-darker: #9b072a;
29
+ --color-accent-darkest: #7e0322;
30
+ --color-success-lightest: #c4e5c0;
31
+ --color-success-lighter: #8fc78b;
32
+ --color-success-light: #58a854;
33
+ --color-success: #008a07;
34
+ --color-success-dark: #006a00;
35
+ --color-success-darker: #004c00;
36
+ --color-success-darkest: #002f00;
37
+ --color-warning-lightest: #fdd2c0;
38
+ --color-warning-lighter: #eea88a;
39
+ --color-warning-light: #dd7d53;
40
+ --color-warning: #c95000;
41
+ --color-warning-dark: #9d3a00;
42
+ --color-warning-darker: #722600;
43
+ --color-warning-darkest: #4b1200;
44
+ --color-error-lightest: #fdc6c6;
45
+ --color-error-lighter: #ea9295;
46
+ --color-error-light: #d35d65;
47
+ --color-error: #b81237;
48
+ --color-error-dark: #8f0327;
49
+ --color-error-darker: #690018;
50
+ --color-error-darkest: #44000a;
51
+ --color-info-lightest: #acbbd5;
52
+ --color-info-lighter: #8198c2;
53
+ --color-info-light: #5775ae;
54
+ --color-info: #2e5299;
55
+ --color-info-dark: #203d77;
56
+ --color-info-darker: #132956;
57
+ --color-info-darkest: #071738;
58
+ }
@@ -0,0 +1,58 @@
1
+ @theme inline {
2
+ --color-primary-lightest: hsl(216.77, 89.39%, 43.99%);
3
+ --color-primary-lighter: hsl(216.29, 94.12%, 35.01%);
4
+ --color-primary-light: hsl(216.37, 97.67%, 26.93%);
5
+ --color-primary: hsl(217.2, 100%, 19.61%);
6
+ --color-primary-dark: hsl(218.95, 100%, 14.93%);
7
+ --color-primary-darker: hsl(222.31, 100%, 10.59%);
8
+ --color-primary-darkest: hsl(228.65, 100%, 6.6%);
9
+ --color-secondary-lightest: hsl(199.45, 100%, 97.34%);
10
+ --color-secondary-lighter: hsl(199.38, 100%, 94.73%);
11
+ --color-secondary-light: hsl(199.29, 95.95%, 92.09%);
12
+ --color-secondary: hsl(199.2, 92.7%, 89.41%);
13
+ --color-secondary-dark: hsl(198.5, 96.92%, 86.75%);
14
+ --color-secondary-darker: hsl(197.77, 99.01%, 83.9%);
15
+ --color-secondary-darkest: hsl(197, 99.86%, 80.82%);
16
+ --color-tertiary-lightest: hsl(199.75, 99.81%, 67.58%);
17
+ --color-tertiary-lighter: hsl(202.53, 100%, 57.56%);
18
+ --color-tertiary-light: hsl(204.78, 100%, 47%);
19
+ --color-tertiary: hsl(217.35, 98.29%, 53.54%);
20
+ --color-tertiary-dark: hsl(216.77, 89.39%, 43.99%);
21
+ --color-tertiary-darker: hsl(216.29, 94.12%, 35.01%);
22
+ --color-tertiary-darkest: hsl(216.37, 97.67%, 26.93%);
23
+ --color-accent-lightest: hsl(353.39, 86.95%, 78.18%);
24
+ --color-accent-lighter: hsl(353.95, 78.84%, 69.69%);
25
+ --color-accent-light: hsl(353.52, 73.18%, 60.13%);
26
+ --color-accent: hsl(348.56, 82.17%, 46.29%);
27
+ --color-accent-dark: hsl(347.26, 85.88%, 38.93%);
28
+ --color-accent-darker: hsl(345.89, 90.98%, 31.82%);
29
+ --color-accent-darkest: hsl(345, 95.86%, 25.31%);
30
+ --color-success-lightest: hsl(114.97, 40.73%, 82.58%);
31
+ --color-success-lighter: hsl(115.71, 34.69%, 66.15%);
32
+ --color-success-light: hsl(117.04, 33.36%, 49.53%);
33
+ --color-success: hsl(123.03, 99.86%, 27.07%);
34
+ --color-success-dark: hsl(122.95, 100%, 19.11%);
35
+ --color-success-darker: hsl(122.88, 100%, 12.75%);
36
+ --color-success-darkest: hsl(122.85, 100%, 7.59%);
37
+ --color-warning-lightest: hsl(17.74, 94.96%, 87.24%);
38
+ --color-warning-lighter: hsl(17.94, 75.08%, 73.77%);
39
+ --color-warning-light: hsl(18.45, 66.88%, 59.6%);
40
+ --color-warning: hsl(23.88, 100%, 39.41%);
41
+ --color-warning-dark: hsl(24.01, 100%, 29.25%);
42
+ --color-warning-darker: hsl(22.64, 100%, 20.66%);
43
+ --color-warning-darkest: hsl(18.45, 100%, 13.3%);
44
+ --color-error-lightest: hsl(359.69, 92.77%, 88.44%);
45
+ --color-error-lighter: hsl(358.32, 67.17%, 74.5%);
46
+ --color-error-light: hsl(355.68, 57.13%, 59.46%);
47
+ --color-error: hsl(346.64, 82.14%, 39.61%);
48
+ --color-error-dark: hsl(344.75, 95.28%, 28.78%);
49
+ --color-error-darker: hsl(344.52, 100%, 19.69%);
50
+ --color-error-darkest: hsl(347.44, 100%, 12.27%);
51
+ --color-info-lightest: hsl(218.63, 32.11%, 75.49%);
52
+ --color-info-lighter: hsl(218.81, 34.57%, 63.16%);
53
+ --color-info-light: hsl(219.17, 34.9%, 51.02%);
54
+ --color-info: hsl(219.81, 53.78%, 39.02%);
55
+ --color-info-dark: hsl(219.86, 57.49%, 29.6%);
56
+ --color-info-darker: hsl(219.94, 64.03%, 20.65%);
57
+ --color-info-darkest: hsl(220.32, 77.63%, 12.34%);
58
+ }
@@ -0,0 +1,58 @@
1
+ @theme inline {
2
+ --color-primary-lightest: oklch(0.503825 0.201675 260.53);
3
+ --color-primary-lighter: oklch(0.43255 0.17355 260.29999999999995);
4
+ --color-primary-light: oklch(0.36127499999999996 0.145425 260.07);
5
+ --color-primary: oklch(0.29 0.1173 259.84);
6
+ --color-primary-dark: oklch(0.23925 0.099705 259.84);
7
+ --color-primary-darker: oklch(0.1885 0.08211 259.84);
8
+ --color-primary-darkest: oklch(0.13774999999999998 0.064515 259.84);
9
+ --color-secondary-lightest: oklch(0.981675 0.013552500000000002 227.89);
10
+ --color-secondary-lighter: oklch(0.9633499999999999 0.022935 227.89);
11
+ --color-secondary-light: oklch(0.945025 0.0323175 227.89);
12
+ --color-secondary: oklch(0.9267 0.0417 227.89);
13
+ --color-secondary-dark: oklch(0.9110499999999999 0.0543 226.8175);
14
+ --color-secondary-darker: oklch(0.8954 0.0669 225.745);
15
+ --color-secondary-darkest: oklch(0.87975 0.0795 224.67249999999999);
16
+ --color-tertiary-lightest: oklch(0.7918499999999999 0.126525 232.89);
17
+ --color-tertiary-lighter: oklch(0.7196 0.16095 242.18);
18
+ --color-tertiary-light: oklch(0.64735 0.19537500000000002 251.47);
19
+ --color-tertiary: oklch(0.5751 0.2298 260.76);
20
+ --color-tertiary-dark: oklch(0.503825 0.201675 260.53);
21
+ --color-tertiary-darker: oklch(0.43255 0.17355 260.29999999999995);
22
+ --color-tertiary-darkest: oklch(0.36127499999999996 0.145425 260.07);
23
+ --color-accent-lightest: oklch(0.778675 0.11662499999999999 13.01);
24
+ --color-accent-lighter: oklch(0.70645 0.15025 15.45);
25
+ --color-accent-light: oklch(0.634225 0.183875 17.89);
26
+ --color-accent: oklch(0.562 0.2175 20.33);
27
+ --color-accent-dark: oklch(0.50075 0.19485 19.529999999999998);
28
+ --color-accent-darker: oklch(0.4395 0.17220000000000002 18.729999999999997);
29
+ --color-accent-darkest: oklch(0.37825000000000003 0.14955000000000002 17.93);
30
+ --color-success-lightest: oklch(0.88725 0.06009250000000001 142.8);
31
+ --color-success-lighter: oklch(0.7745 0.10169500000000001 142.8);
32
+ --color-success-light: oklch(0.6617500000000001 0.14329750000000002 142.8);
33
+ --color-success: oklch(0.549 0.1849 142.8);
34
+ --color-success-dark: oklch(0.452925 0.157165 142.8);
35
+ --color-success-darker: oklch(0.35685 0.12943000000000002 142.8);
36
+ --color-success-darkest: oklch(0.26077500000000003 0.10169500000000001 142.8);
37
+ --color-warning-lightest: oklch(0.895825 0.055154125 43.9973);
38
+ --color-warning-lighter: oklch(0.79165 0.09333775 43.9973);
39
+ --color-warning-light: oklch(0.6874750000000001 0.131521375 43.9973);
40
+ --color-warning: oklch(0.5833 0.169705 43.9973);
41
+ --color-warning-dark: oklch(0.4812225 0.14424925 43.9973);
42
+ --color-warning-darker: oklch(0.37914500000000007 0.1187935 43.9973);
43
+ --color-warning-darkest: oklch(0.2770675 0.09333775 43.9973);
44
+ --color-error-lightest: oklch(0.8755 0.0626275 18.08);
45
+ --color-error-lighter: oklch(0.751 0.10598500000000001 18.08);
46
+ --color-error-light: oklch(0.6265000000000001 0.14934250000000002 18.08);
47
+ --color-error: oklch(0.502 0.1927 18.08);
48
+ --color-error-dark: oklch(0.41415 0.16379500000000002 18.08);
49
+ --color-error-darker: oklch(0.32630000000000003 0.13489 18.08);
50
+ --color-error-darkest: oklch(0.23845 0.10598500000000001 18.08);
51
+ --color-info-lightest: oklch(0.78855 0.0400725 262.35);
52
+ --color-info-lighter: oklch(0.6759 0.067815 262.35);
53
+ --color-info-light: oklch(0.56325 0.0955575 262.35);
54
+ --color-info: oklch(0.4506 0.1233 262.35);
55
+ --color-info-dark: oklch(0.371745 0.10480500000000001 262.35);
56
+ --color-info-darker: oklch(0.29289 0.08631 262.35);
57
+ --color-info-darkest: oklch(0.214035 0.067815 262.35);
58
+ }
@@ -0,0 +1,58 @@
1
+ @theme inline {
2
+ --color-primary-lightest: rgb(12, 90, 212);
3
+ --color-primary-lighter: rgb(5, 72, 173);
4
+ --color-primary-light: rgb(2, 54, 136);
5
+ --color-primary: rgb(0, 38, 100);
6
+ --color-primary-dark: rgb(0, 26, 77);
7
+ --color-primary-darker: rgb(0, 16, 55);
8
+ --color-primary-darkest: rgb(0, 6, 34);
9
+ --color-secondary-lightest: rgb(240, 251, 255);
10
+ --color-secondary-lighter: rgb(228, 246, 255);
11
+ --color-secondary-light: rgb(215, 242, 254);
12
+ --color-secondary: rgb(203, 237, 253);
13
+ --color-secondary-dark: rgb(188, 234, 254);
14
+ --color-secondary-darker: rgb(173, 231, 255);
15
+ --color-secondary-darkest: rgb(157, 227, 255);
16
+ --color-tertiary-lightest: rgb(90, 201, 255);
17
+ --color-tertiary-lighter: rgb(38, 174, 255);
18
+ --color-tertiary-light: rgb(0, 143, 255);
19
+ --color-tertiary: rgb(20, 108, 253);
20
+ --color-tertiary-dark: rgb(12, 90, 212);
21
+ --color-tertiary-darker: rgb(5, 72, 173);
22
+ --color-tertiary-darkest: rgb(2, 54, 136);
23
+ --color-accent-lightest: rgb(248, 151, 162);
24
+ --color-accent-lighter: rgb(239, 117, 129);
25
+ --color-accent-light: rgb(228, 79, 95);
26
+ --color-accent: rgb(215, 21, 58);
27
+ --color-accent-dark: rgb(185, 14, 50);
28
+ --color-accent-darker: rgb(155, 7, 42);
29
+ --color-accent-darkest: rgb(126, 3, 34);
30
+ --color-success-lightest: rgb(196, 229, 192);
31
+ --color-success-lighter: rgb(143, 199, 139);
32
+ --color-success-light: rgb(88, 168, 84);
33
+ --color-success: rgb(0, 138, 7);
34
+ --color-success-dark: rgb(0, 106, 0);
35
+ --color-success-darker: rgb(0, 76, 0);
36
+ --color-success-darkest: rgb(0, 47, 0);
37
+ --color-warning-lightest: rgb(253, 210, 192);
38
+ --color-warning-lighter: rgb(238, 168, 138);
39
+ --color-warning-light: rgb(221, 125, 83);
40
+ --color-warning: rgb(201, 80, 0);
41
+ --color-warning-dark: rgb(157, 58, 0);
42
+ --color-warning-darker: rgb(114, 38, 0);
43
+ --color-warning-darkest: rgb(75, 18, 0);
44
+ --color-error-lightest: rgb(253, 198, 198);
45
+ --color-error-lighter: rgb(234, 146, 149);
46
+ --color-error-light: rgb(211, 93, 101);
47
+ --color-error: rgb(184, 18, 55);
48
+ --color-error-dark: rgb(143, 3, 39);
49
+ --color-error-darker: rgb(105, 0, 24);
50
+ --color-error-darkest: rgb(68, 0, 10);
51
+ --color-info-lightest: rgb(172, 187, 213);
52
+ --color-info-lighter: rgb(129, 152, 194);
53
+ --color-info-light: rgb(87, 117, 174);
54
+ --color-info: rgb(46, 82, 153);
55
+ --color-info-dark: rgb(32, 61, 119);
56
+ --color-info-darker: rgb(19, 41, 86);
57
+ --color-info-darkest: rgb(7, 23, 56);
58
+ }