@nswds/tokens 3.1.0 → 3.2.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/dist/css/typography/global.css +32 -0
- package/dist/index.cjs +249 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +154 -0
- package/dist/index.d.ts +154 -0
- package/dist/index.js +249 -65
- package/dist/index.js.map +1 -1
- package/dist/js/typography/global.js +42 -0
- package/dist/json/typography/global.json +42 -0
- package/dist/less/typography/global.less +30 -0
- package/dist/scss/typography/global.scss +30 -0
- package/dist/tailwind/typography/global.css +32 -0
- package/dist/tokens/global/typography/canonical.json +240 -0
- package/dist/tokens/typography.base.json +240 -0
- package/dist/ts/typography/global.ts +42 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -38997,6 +38997,54 @@ var require_global3 = __commonJS({
|
|
|
38997
38997
|
}
|
|
38998
38998
|
});
|
|
38999
38999
|
|
|
39000
|
+
// src/json/typography/global.json
|
|
39001
|
+
var require_global4 = __commonJS({
|
|
39002
|
+
"src/json/typography/global.json"(exports$1, module) {
|
|
39003
|
+
module.exports = {
|
|
39004
|
+
"font-family": {
|
|
39005
|
+
"font-family-sans": "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39006
|
+
"font-family-display": "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39007
|
+
"font-family-system": "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39008
|
+
"font-family-mono": "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace"
|
|
39009
|
+
},
|
|
39010
|
+
"font-size": {
|
|
39011
|
+
"font-size-12": "0.75rem",
|
|
39012
|
+
"font-size-14": "0.875rem",
|
|
39013
|
+
"font-size-16": "1rem",
|
|
39014
|
+
"font-size-18": "1.125rem",
|
|
39015
|
+
"font-size-20": "1.25rem",
|
|
39016
|
+
"font-size-22": "1.375rem",
|
|
39017
|
+
"font-size-24": "1.5rem",
|
|
39018
|
+
"font-size-30": "1.875rem",
|
|
39019
|
+
"font-size-36": "2.25rem",
|
|
39020
|
+
"font-size-48": "3rem",
|
|
39021
|
+
"font-size-56": "3.5rem",
|
|
39022
|
+
"font-size-64": "4rem"
|
|
39023
|
+
},
|
|
39024
|
+
"font-weight": {
|
|
39025
|
+
"font-weight-light": 300,
|
|
39026
|
+
"font-weight-regular": 400,
|
|
39027
|
+
"font-weight-medium": 500,
|
|
39028
|
+
"font-weight-semibold": 600,
|
|
39029
|
+
"font-weight-bold": 700
|
|
39030
|
+
},
|
|
39031
|
+
"line-height": {
|
|
39032
|
+
"line-height-none": 1,
|
|
39033
|
+
"line-height-tight": 1.2,
|
|
39034
|
+
"line-height-snug": 1.3333333,
|
|
39035
|
+
"line-height-base": 1.5,
|
|
39036
|
+
"line-height-relaxed": 1.6,
|
|
39037
|
+
"line-height-loose": 1.75
|
|
39038
|
+
},
|
|
39039
|
+
"letter-spacing": {
|
|
39040
|
+
"letter-spacing-tight": "-0.0125em",
|
|
39041
|
+
"letter-spacing-normal": "0em",
|
|
39042
|
+
"letter-spacing-wide": "0.025em"
|
|
39043
|
+
}
|
|
39044
|
+
};
|
|
39045
|
+
}
|
|
39046
|
+
});
|
|
39047
|
+
|
|
39000
39048
|
// src/css/colors/global/hex.css
|
|
39001
39049
|
var hex_exports = {};
|
|
39002
39050
|
__export(hex_exports, {
|
|
@@ -39186,6 +39234,13 @@ __export(global_exports3, {
|
|
|
39186
39234
|
});
|
|
39187
39235
|
var global_default3 = ":root {\n --breakpoint-xs: 480px; /** Extra-small breakpoint \u2014 large phones and up. */\n --breakpoint-sm: 768px; /** Small breakpoint \u2014 tablets portrait and up. */\n --breakpoint-md: 992px; /** Medium breakpoint \u2014 tablets landscape / small laptops and up. */\n --breakpoint-lg: 1200px; /** Large breakpoint \u2014 desktops and up. */\n --breakpoint-xl: 1600px; /** Extra-large breakpoint \u2014 wide desktops and up. */\n}\n";
|
|
39188
39236
|
|
|
39237
|
+
// src/css/typography/global.css
|
|
39238
|
+
var global_exports4 = {};
|
|
39239
|
+
__export(global_exports4, {
|
|
39240
|
+
default: () => global_default4
|
|
39241
|
+
});
|
|
39242
|
+
var global_default4 = ":root {\n --font-family-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; /** Primary typeface \u2014 Public Sans (the NSW Government brand typeface) with system, Helvetica/Arial, and emoji fallbacks. Use for all UI and body text. */\n --font-family-display: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; /** Display typeface \u2014 currently the same stack as sans; a separate token so display/heading type can diverge from body text later without a breaking change. */\n --font-family-system: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; /** System typeface \u2014 currently the same stack as sans; a separate token for system-chrome contexts (toasts, native-feeling UI) that may diverge later. */\n --font-family-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace; /** Monospace stack \u2014 JetBrains Mono with ui-monospace and system fallbacks for code, tabular data, and technical content. */\n --font-size-12: 0.75rem; /** Font size 12px (0.75rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-14: 0.875rem; /** Font size 14px (0.875rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-16: 1rem; /** Font size 16px (1rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-18: 1.125rem; /** Font size 18px (1.125rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-20: 1.25rem; /** Font size 20px (1.25rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-22: 1.375rem; /** Font size 22px (1.375rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-24: 1.5rem; /** Font size 24px (1.5rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-30: 1.875rem; /** Font size 30px (1.875rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-36: 2.25rem; /** Font size 36px (2.25rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-48: 3rem; /** Font size 48px (3rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-56: 3.5rem; /** Font size 56px (3.5rem) \u2014 the step name is the px value at the default root font size. */\n --font-size-64: 4rem; /** Font size 64px (4rem) \u2014 the step name is the px value at the default root font size. */\n --font-weight-light: 300; /** Light (300) \u2014 large display text only; avoid at body sizes for legibility. */\n --font-weight-regular: 400; /** Regular (400) \u2014 default body text weight. */\n --font-weight-medium: 500; /** Medium (500) \u2014 subtle emphasis, labels, and navigation. */\n --font-weight-semibold: 600; /** Semibold (600) \u2014 headings and strong emphasis. */\n --font-weight-bold: 700; /** Bold (700) \u2014 highest emphasis; key figures and primary headings. */\n --line-height-none: 1; /** Solid (1) \u2014 display headings set at their own size (48/48, 56/56, 64/64 in the prose scale). */\n --line-height-tight: 1.2; /** Tight (1.2) \u2014 large headings (36/30 in the prose scale). */\n --line-height-snug: 1.3333333; /** Snug (1.3333333) \u2014 mid-size headings (32/24, 40/30 in the prose scale). */\n --line-height-base: 1.5; /** Base (1.5) \u2014 default for UI text and dense content (24/16, 36/24 in the prose scale); meets WCAG 1.4.12 text-spacing. */\n --line-height-relaxed: 1.6; /** Relaxed (1.6) \u2014 subheadings and lead text (32/20 in the prose scale). */\n --line-height-loose: 1.75; /** Loose (1.75) \u2014 long-form body text (28/16 in the prose scale). */\n --letter-spacing-tight: -0.0125em; /** Tight tracking (-0.0125em) \u2014 large display headings. Value is an em multiplier; string outputs render it with the em unit. */\n --letter-spacing-normal: 0em; /** Normal tracking (0em) \u2014 default for body text. Value is an em multiplier; string outputs render it with the em unit. */\n --letter-spacing-wide: 0.025em; /** Wide tracking (0.025em) \u2014 small caps, overlines, and small labels. Value is an em multiplier; string outputs render it with the em unit. */\n}\n";
|
|
39243
|
+
|
|
39189
39244
|
// src/js/colors/global/hex.js
|
|
39190
39245
|
var hex_exports7 = {};
|
|
39191
39246
|
__export(hex_exports7, {
|
|
@@ -42979,8 +43034,8 @@ var fuchsiaTeal4 = {
|
|
|
42979
43034
|
};
|
|
42980
43035
|
|
|
42981
43036
|
// src/js/space/global.js
|
|
42982
|
-
var
|
|
42983
|
-
__export(
|
|
43037
|
+
var global_exports5 = {};
|
|
43038
|
+
__export(global_exports5, {
|
|
42984
43039
|
space: () => space
|
|
42985
43040
|
});
|
|
42986
43041
|
var space = {
|
|
@@ -42999,8 +43054,8 @@ var space = {
|
|
|
42999
43054
|
};
|
|
43000
43055
|
|
|
43001
43056
|
// src/js/radius/global.js
|
|
43002
|
-
var
|
|
43003
|
-
__export(
|
|
43057
|
+
var global_exports6 = {};
|
|
43058
|
+
__export(global_exports6, {
|
|
43004
43059
|
radius: () => radius
|
|
43005
43060
|
});
|
|
43006
43061
|
var radius = {
|
|
@@ -43012,8 +43067,8 @@ var radius = {
|
|
|
43012
43067
|
};
|
|
43013
43068
|
|
|
43014
43069
|
// src/js/breakpoints/global.js
|
|
43015
|
-
var
|
|
43016
|
-
__export(
|
|
43070
|
+
var global_exports7 = {};
|
|
43071
|
+
__export(global_exports7, {
|
|
43017
43072
|
breakpoint: () => breakpoint
|
|
43018
43073
|
});
|
|
43019
43074
|
var breakpoint = {
|
|
@@ -43024,6 +43079,56 @@ var breakpoint = {
|
|
|
43024
43079
|
xl: "1600px"
|
|
43025
43080
|
};
|
|
43026
43081
|
|
|
43082
|
+
// src/js/typography/global.js
|
|
43083
|
+
var global_exports8 = {};
|
|
43084
|
+
__export(global_exports8, {
|
|
43085
|
+
fontFamily: () => fontFamily,
|
|
43086
|
+
fontSize: () => fontSize,
|
|
43087
|
+
fontWeight: () => fontWeight,
|
|
43088
|
+
letterSpacing: () => letterSpacing,
|
|
43089
|
+
lineHeight: () => lineHeight
|
|
43090
|
+
});
|
|
43091
|
+
var fontFamily = {
|
|
43092
|
+
sans: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43093
|
+
display: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43094
|
+
system: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43095
|
+
mono: "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace"
|
|
43096
|
+
};
|
|
43097
|
+
var fontSize = {
|
|
43098
|
+
12: "0.75rem",
|
|
43099
|
+
14: "0.875rem",
|
|
43100
|
+
16: "1rem",
|
|
43101
|
+
18: "1.125rem",
|
|
43102
|
+
20: "1.25rem",
|
|
43103
|
+
22: "1.375rem",
|
|
43104
|
+
24: "1.5rem",
|
|
43105
|
+
30: "1.875rem",
|
|
43106
|
+
36: "2.25rem",
|
|
43107
|
+
48: "3rem",
|
|
43108
|
+
56: "3.5rem",
|
|
43109
|
+
64: "4rem"
|
|
43110
|
+
};
|
|
43111
|
+
var fontWeight = {
|
|
43112
|
+
light: 300,
|
|
43113
|
+
regular: 400,
|
|
43114
|
+
medium: 500,
|
|
43115
|
+
semibold: 600,
|
|
43116
|
+
bold: 700
|
|
43117
|
+
};
|
|
43118
|
+
var lineHeight = {
|
|
43119
|
+
none: 1,
|
|
43120
|
+
tight: 1.2,
|
|
43121
|
+
snug: 1.3333333,
|
|
43122
|
+
base: 1.5,
|
|
43123
|
+
relaxed: 1.6,
|
|
43124
|
+
loose: 1.75
|
|
43125
|
+
};
|
|
43126
|
+
var letterSpacing = {
|
|
43127
|
+
tight: "-0.0125em",
|
|
43128
|
+
normal: "0em",
|
|
43129
|
+
wide: "0.025em"
|
|
43130
|
+
};
|
|
43131
|
+
|
|
43027
43132
|
// src/less/colors/global/hex.less
|
|
43028
43133
|
var hex_exports13 = {};
|
|
43029
43134
|
__export(hex_exports13, {
|
|
@@ -43193,25 +43298,32 @@ __export(rgb_exports18, {
|
|
|
43193
43298
|
var rgb_default12 = "@ember-50: rgb(34, 39, 43);\n@ember-100: rgb(28, 42, 59);\n@ember-150: rgb(28, 42, 76);\n@ember-200: rgb(37, 38, 92);\n@ember-250: rgb(51, 31, 104);\n@ember-300: rgb(68, 17, 112);\n@ember-350: rgb(97, 17, 117);\n@ember-400: rgb(128, 15, 115);\n@ember-450: rgb(159, 9, 106);\n@ember-500: rgb(188, 7, 88);\n@ember-550: rgb(215, 21, 58);\n@ember-600: rgb(222, 43, 52);\n@ember-650: rgb(228, 59, 46);\n@ember-700: rgb(233, 73, 39);\n@ember-750: rgb(238, 86, 33);\n@ember-800: rgb(243, 99, 27);\n@ember-850: rgb(247, 115, 0);\n@ember-900: rgb(249, 130, 0);\n@ember-950: rgb(251, 145, 0);\n@ember-1000: rgb(251, 160, 0);\n@ember-1050: rgb(250, 175, 5);\n@earthfire-50: rgb(82, 55, 25);\n@earthfire-100: rgb(95, 54, 13);\n@earthfire-150: rgb(108, 51, 0);\n@earthfire-200: rgb(122, 46, 0);\n@earthfire-250: rgb(135, 38, 0);\n@earthfire-300: rgb(148, 27, 0);\n@earthfire-350: rgb(167, 42, 5);\n@earthfire-400: rgb(185, 56, 11);\n@earthfire-450: rgb(204, 70, 17);\n@earthfire-500: rgb(224, 85, 22);\n@earthfire-550: rgb(243, 99, 27);\n@earthfire-600: rgb(247, 115, 0);\n@earthfire-650: rgb(249, 130, 0);\n@earthfire-700: rgb(251, 145, 0);\n@earthfire-750: rgb(251, 160, 0);\n@earthfire-800: rgb(250, 175, 5);\n@earthfire-850: rgb(250, 187, 59);\n@earthfire-900: rgb(250, 199, 87);\n@earthfire-950: rgb(251, 210, 111);\n@earthfire-1000: rgb(252, 221, 133);\n@earthfire-1050: rgb(253, 231, 154);\n@fuchsia-heat-50: rgb(101, 0, 77);\n@fuchsia-heat-100: rgb(123, 2, 95);\n@fuchsia-heat-150: rgb(146, 4, 114);\n@fuchsia-heat-200: rgb(169, 8, 133);\n@fuchsia-heat-250: rgb(193, 13, 153);\n@fuchsia-heat-300: rgb(217, 18, 174);\n@fuchsia-heat-350: rgb(230, 30, 146);\n@fuchsia-heat-400: rgb(240, 45, 119);\n@fuchsia-heat-450: rgb(245, 62, 91);\n@fuchsia-heat-500: rgb(246, 80, 62);\n@fuchsia-heat-550: rgb(243, 99, 27);\n@fuchsia-heat-600: rgb(247, 115, 0);\n@fuchsia-heat-650: rgb(249, 130, 0);\n@fuchsia-heat-700: rgb(251, 145, 0);\n@fuchsia-heat-750: rgb(251, 160, 0);\n@fuchsia-heat-800: rgb(250, 175, 5);\n@fuchsia-heat-850: rgb(250, 187, 59);\n@fuchsia-heat-900: rgb(250, 199, 87);\n@fuchsia-heat-950: rgb(251, 210, 111);\n@fuchsia-heat-1000: rgb(252, 221, 133);\n@fuchsia-heat-1050: rgb(253, 231, 154);\n@polar-glow-50: rgb(0, 38, 100);\n@polar-glow-100: rgb(1, 51, 128);\n@polar-glow-150: rgb(3, 65, 158);\n@polar-glow-200: rgb(7, 79, 189);\n@polar-glow-250: rgb(13, 93, 220);\n@polar-glow-300: rgb(20, 108, 253);\n@polar-glow-350: rgb(0, 119, 231);\n@polar-glow-400: rgb(0, 126, 208);\n@polar-glow-450: rgb(0, 130, 184);\n@polar-glow-500: rgb(0, 130, 162);\n@polar-glow-550: rgb(46, 128, 142);\n@polar-glow-600: rgb(66, 146, 159);\n@polar-glow-650: rgb(84, 163, 176);\n@polar-glow-700: rgb(103, 182, 193);\n@polar-glow-750: rgb(121, 200, 211);\n@polar-glow-800: rgb(140, 219, 229);\n@polar-glow-850: rgb(154, 223, 229);\n@polar-glow-900: rgb(169, 227, 229);\n@polar-glow-950: rgb(182, 231, 230);\n@polar-glow-1000: rgb(196, 235, 231);\n@polar-glow-1050: rgb(209, 238, 234);\n@glacier-pool-50: rgb(68, 17, 112);\n@glacier-pool-100: rgb(81, 30, 136);\n@glacier-pool-150: rgb(93, 43, 161);\n@glacier-pool-200: rgb(106, 57, 187);\n@glacier-pool-250: rgb(117, 70, 214);\n@glacier-pool-300: rgb(128, 85, 241);\n@glacier-pool-350: rgb(115, 89, 246);\n@glacier-pool-400: rgb(100, 94, 250);\n@glacier-pool-450: rgb(83, 98, 252);\n@glacier-pool-500: rgb(60, 103, 253);\n@glacier-pool-550: rgb(20, 108, 253);\n@glacier-pool-600: rgb(0, 137, 255);\n@glacier-pool-650: rgb(12, 162, 255);\n@glacier-pool-700: rgb(59, 185, 255);\n@glacier-pool-750: rgb(100, 205, 255);\n@glacier-pool-800: rgb(140, 224, 255);\n@glacier-pool-850: rgb(154, 227, 255);\n@glacier-pool-900: rgb(167, 229, 255);\n@glacier-pool-950: rgb(179, 232, 254);\n@glacier-pool-1000: rgb(191, 234, 254);\n@glacier-pool-1050: rgb(203, 237, 253);\n@deep-current-50: rgb(11, 63, 71);\n@deep-current-100: rgb(18, 75, 84);\n@deep-current-150: rgb(25, 88, 98);\n@deep-current-200: rgb(32, 101, 113);\n@deep-current-250: rgb(39, 114, 127);\n@deep-current-300: rgb(46, 128, 142);\n@deep-current-350: rgb(0, 130, 162);\n@deep-current-400: rgb(0, 130, 184);\n@deep-current-450: rgb(0, 126, 208);\n@deep-current-500: rgb(0, 119, 231);\n@deep-current-550: rgb(20, 108, 253);\n@deep-current-600: rgb(0, 137, 255);\n@deep-current-650: rgb(12, 162, 255);\n@deep-current-700: rgb(59, 185, 255);\n@deep-current-750: rgb(100, 205, 255);\n@deep-current-800: rgb(140, 224, 255);\n@deep-current-850: rgb(154, 227, 255);\n@deep-current-900: rgb(167, 229, 255);\n@deep-current-950: rgb(179, 232, 254);\n@deep-current-1000: rgb(191, 234, 254);\n@deep-current-1050: rgb(203, 237, 253);\n@blue-red-50: rgb(0, 38, 100);\n@blue-red-100: rgb(1, 51, 128);\n@blue-red-150: rgb(3, 65, 158);\n@blue-red-200: rgb(7, 79, 189);\n@blue-red-250: rgb(13, 93, 220);\n@blue-red-300: rgb(20, 108, 253);\n@blue-red-350: rgb(76, 142, 255);\n@blue-red-400: rgb(121, 172, 255);\n@blue-red-450: rgb(165, 200, 255);\n@blue-red-500: rgb(210, 228, 255);\n@blue-red-550: rgb(254, 215, 214);\n@blue-red-600: rgb(249, 175, 174);\n@blue-red-650: rgb(241, 134, 135);\n@blue-red-700: rgb(229, 89, 97);\n@blue-red-750: rgb(215, 21, 58);\n@blue-red-800: rgb(191, 15, 52);\n@blue-red-850: rgb(167, 10, 45);\n@blue-red-900: rgb(143, 5, 39);\n@blue-red-950: rgb(121, 2, 32);\n@blue-red-1000: rgb(99, 0, 25);\n@blue-orange-50: rgb(0, 38, 100);\n@blue-orange-100: rgb(1, 51, 128);\n@blue-orange-150: rgb(3, 65, 158);\n@blue-orange-200: rgb(7, 79, 189);\n@blue-orange-250: rgb(13, 93, 220);\n@blue-orange-300: rgb(20, 108, 253);\n@blue-orange-350: rgb(76, 142, 255);\n@blue-orange-400: rgb(121, 172, 255);\n@blue-orange-450: rgb(165, 200, 255);\n@blue-orange-500: rgb(210, 228, 255);\n@blue-orange-550: rgb(255, 226, 214);\n@blue-orange-600: rgb(255, 196, 173);\n@blue-orange-650: rgb(254, 166, 131);\n@blue-orange-700: rgb(250, 134, 87);\n@blue-orange-750: rgb(243, 99, 27);\n@blue-orange-800: rgb(224, 85, 22);\n@blue-orange-850: rgb(204, 70, 17);\n@blue-orange-900: rgb(185, 56, 11);\n@blue-orange-950: rgb(167, 42, 5);\n@blue-orange-1000: rgb(148, 27, 0);\n@purple-yellow-50: rgb(68, 17, 112);\n@purple-yellow-100: rgb(81, 30, 136);\n@purple-yellow-150: rgb(93, 43, 161);\n@purple-yellow-200: rgb(106, 57, 187);\n@purple-yellow-250: rgb(117, 70, 214);\n@purple-yellow-300: rgb(128, 85, 241);\n@purple-yellow-350: rgb(150, 123, 247);\n@purple-yellow-400: rgb(174, 158, 251);\n@purple-yellow-450: rgb(199, 191, 254);\n@purple-yellow-500: rgb(227, 223, 255);\n@purple-yellow-550: rgb(255, 240, 218);\n@purple-yellow-600: rgb(255, 224, 180);\n@purple-yellow-650: rgb(254, 208, 139);\n@purple-yellow-700: rgb(252, 192, 93);\n@purple-yellow-750: rgb(250, 175, 5);\n@purple-yellow-800: rgb(219, 153, 3);\n@purple-yellow-850: rgb(189, 132, 2);\n@purple-yellow-900: rgb(160, 111, 1);\n@purple-yellow-950: rgb(132, 91, 0);\n@purple-yellow-1000: rgb(105, 72, 0);\n@fuchsia-teal-50: rgb(101, 0, 77);\n@fuchsia-teal-100: rgb(123, 2, 95);\n@fuchsia-teal-150: rgb(146, 4, 114);\n@fuchsia-teal-200: rgb(169, 8, 133);\n@fuchsia-teal-250: rgb(193, 13, 153);\n@fuchsia-teal-300: rgb(217, 18, 174);\n@fuchsia-teal-350: rgb(230, 91, 191);\n@fuchsia-teal-400: rgb(240, 136, 207);\n@fuchsia-teal-450: rgb(248, 177, 223);\n@fuchsia-teal-500: rgb(253, 216, 239);\n@fuchsia-teal-550: rgb(214, 229, 232);\n@fuchsia-teal-600: rgb(174, 203, 209);\n@fuchsia-teal-650: rgb(134, 178, 186);\n@fuchsia-teal-700: rgb(93, 153, 164);\n@fuchsia-teal-750: rgb(46, 128, 142);\n@fuchsia-teal-800: rgb(39, 114, 127);\n@fuchsia-teal-850: rgb(32, 101, 113);\n@fuchsia-teal-900: rgb(25, 88, 98);\n@fuchsia-teal-950: rgb(18, 75, 84);\n@fuchsia-teal-1000: rgb(11, 63, 71);\n";
|
|
43194
43299
|
|
|
43195
43300
|
// src/less/space/global.less
|
|
43196
|
-
var
|
|
43197
|
-
__export(
|
|
43198
|
-
default: () =>
|
|
43301
|
+
var global_exports9 = {};
|
|
43302
|
+
__export(global_exports9, {
|
|
43303
|
+
default: () => global_default5
|
|
43199
43304
|
});
|
|
43200
|
-
var
|
|
43305
|
+
var global_default5 = "@space-0: 0rem; // Spacing step 0 on the 4px grid (0px at the default root font size). Use for padding, margins, and gaps.\n@space-1: 0.25rem; // Spacing step 1 on the 4px grid (4px at the default root font size). Use for padding, margins, and gaps.\n@space-2: 0.5rem; // Spacing step 2 on the 4px grid (8px at the default root font size). Use for padding, margins, and gaps.\n@space-3: 0.75rem; // Spacing step 3 on the 4px grid (12px at the default root font size). Use for padding, margins, and gaps.\n@space-4: 1rem; // Spacing step 4 on the 4px grid (16px at the default root font size). Use for padding, margins, and gaps.\n@space-5: 1.25rem; // Spacing step 5 on the 4px grid (20px at the default root font size). Use for padding, margins, and gaps.\n@space-6: 1.5rem; // Spacing step 6 on the 4px grid (24px at the default root font size). Use for padding, margins, and gaps.\n@space-8: 2rem; // Spacing step 8 on the 4px grid (32px at the default root font size). Use for padding, margins, and gaps.\n@space-10: 2.5rem; // Spacing step 10 on the 4px grid (40px at the default root font size). Use for padding, margins, and gaps.\n@space-12: 3rem; // Spacing step 12 on the 4px grid (48px at the default root font size). Use for padding, margins, and gaps.\n@space-14: 3.5rem; // Spacing step 14 on the 4px grid (56px at the default root font size). Use for padding, margins, and gaps.\n@space-16: 4rem; // Spacing step 16 on the 4px grid (64px at the default root font size). Use for padding, margins, and gaps.\n";
|
|
43201
43306
|
|
|
43202
43307
|
// src/less/radius/global.less
|
|
43203
|
-
var
|
|
43204
|
-
__export(
|
|
43205
|
-
default: () =>
|
|
43308
|
+
var global_exports10 = {};
|
|
43309
|
+
__export(global_exports10, {
|
|
43310
|
+
default: () => global_default6
|
|
43206
43311
|
});
|
|
43207
|
-
var
|
|
43312
|
+
var global_default6 = "@radius-none: 0px; // Square corners \u2014 tables, full-bleed surfaces, and elements flush to container edges.\n@radius-sm: 4px; // Small rounding \u2014 inputs, buttons, tags, and compact controls.\n@radius-md: 8px; // Medium rounding \u2014 cards, panels, and modals.\n@radius-lg: 16px; // Large rounding \u2014 hero surfaces and prominent containers.\n@radius-pill: 9999px; // Fully rounded ends \u2014 pills, badges, and circular icon buttons.\n";
|
|
43208
43313
|
|
|
43209
43314
|
// src/less/breakpoints/global.less
|
|
43210
|
-
var
|
|
43211
|
-
__export(
|
|
43212
|
-
default: () =>
|
|
43315
|
+
var global_exports11 = {};
|
|
43316
|
+
__export(global_exports11, {
|
|
43317
|
+
default: () => global_default7
|
|
43318
|
+
});
|
|
43319
|
+
var global_default7 = "@breakpoint-xs: 480px; // Extra-small breakpoint \u2014 large phones and up.\n@breakpoint-sm: 768px; // Small breakpoint \u2014 tablets portrait and up.\n@breakpoint-md: 992px; // Medium breakpoint \u2014 tablets landscape / small laptops and up.\n@breakpoint-lg: 1200px; // Large breakpoint \u2014 desktops and up.\n@breakpoint-xl: 1600px; // Extra-large breakpoint \u2014 wide desktops and up.\n";
|
|
43320
|
+
|
|
43321
|
+
// src/less/typography/global.less
|
|
43322
|
+
var global_exports12 = {};
|
|
43323
|
+
__export(global_exports12, {
|
|
43324
|
+
default: () => global_default8
|
|
43213
43325
|
});
|
|
43214
|
-
var
|
|
43326
|
+
var global_default8 = "@font-family-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; // Primary typeface \u2014 Public Sans (the NSW Government brand typeface) with system, Helvetica/Arial, and emoji fallbacks. Use for all UI and body text.\n@font-family-display: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; // Display typeface \u2014 currently the same stack as sans; a separate token so display/heading type can diverge from body text later without a breaking change.\n@font-family-system: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; // System typeface \u2014 currently the same stack as sans; a separate token for system-chrome contexts (toasts, native-feeling UI) that may diverge later.\n@font-family-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace; // Monospace stack \u2014 JetBrains Mono with ui-monospace and system fallbacks for code, tabular data, and technical content.\n@font-size-12: 0.75rem; // Font size 12px (0.75rem) \u2014 the step name is the px value at the default root font size.\n@font-size-14: 0.875rem; // Font size 14px (0.875rem) \u2014 the step name is the px value at the default root font size.\n@font-size-16: 1rem; // Font size 16px (1rem) \u2014 the step name is the px value at the default root font size.\n@font-size-18: 1.125rem; // Font size 18px (1.125rem) \u2014 the step name is the px value at the default root font size.\n@font-size-20: 1.25rem; // Font size 20px (1.25rem) \u2014 the step name is the px value at the default root font size.\n@font-size-22: 1.375rem; // Font size 22px (1.375rem) \u2014 the step name is the px value at the default root font size.\n@font-size-24: 1.5rem; // Font size 24px (1.5rem) \u2014 the step name is the px value at the default root font size.\n@font-size-30: 1.875rem; // Font size 30px (1.875rem) \u2014 the step name is the px value at the default root font size.\n@font-size-36: 2.25rem; // Font size 36px (2.25rem) \u2014 the step name is the px value at the default root font size.\n@font-size-48: 3rem; // Font size 48px (3rem) \u2014 the step name is the px value at the default root font size.\n@font-size-56: 3.5rem; // Font size 56px (3.5rem) \u2014 the step name is the px value at the default root font size.\n@font-size-64: 4rem; // Font size 64px (4rem) \u2014 the step name is the px value at the default root font size.\n@font-weight-light: 300; // Light (300) \u2014 large display text only; avoid at body sizes for legibility.\n@font-weight-regular: 400; // Regular (400) \u2014 default body text weight.\n@font-weight-medium: 500; // Medium (500) \u2014 subtle emphasis, labels, and navigation.\n@font-weight-semibold: 600; // Semibold (600) \u2014 headings and strong emphasis.\n@font-weight-bold: 700; // Bold (700) \u2014 highest emphasis; key figures and primary headings.\n@line-height-none: 1; // Solid (1) \u2014 display headings set at their own size (48/48, 56/56, 64/64 in the prose scale).\n@line-height-tight: 1.2; // Tight (1.2) \u2014 large headings (36/30 in the prose scale).\n@line-height-snug: 1.3333333; // Snug (1.3333333) \u2014 mid-size headings (32/24, 40/30 in the prose scale).\n@line-height-base: 1.5; // Base (1.5) \u2014 default for UI text and dense content (24/16, 36/24 in the prose scale); meets WCAG 1.4.12 text-spacing.\n@line-height-relaxed: 1.6; // Relaxed (1.6) \u2014 subheadings and lead text (32/20 in the prose scale).\n@line-height-loose: 1.75; // Loose (1.75) \u2014 long-form body text (28/16 in the prose scale).\n@letter-spacing-tight: -0.0125em; // Tight tracking (-0.0125em) \u2014 large display headings. Value is an em multiplier; string outputs render it with the em unit.\n@letter-spacing-normal: 0em; // Normal tracking (0em) \u2014 default for body text. Value is an em multiplier; string outputs render it with the em unit.\n@letter-spacing-wide: 0.025em; // Wide tracking (0.025em) \u2014 small caps, overlines, and small labels. Value is an em multiplier; string outputs render it with the em unit.\n";
|
|
43215
43327
|
|
|
43216
43328
|
// src/scss/colors/global/hex.scss
|
|
43217
43329
|
var hex_exports19 = {};
|
|
@@ -43382,25 +43494,32 @@ __export(rgb_exports24, {
|
|
|
43382
43494
|
var rgb_default18 = "$ember-50: rgb(34, 39, 43);\n$ember-100: rgb(28, 42, 59);\n$ember-150: rgb(28, 42, 76);\n$ember-200: rgb(37, 38, 92);\n$ember-250: rgb(51, 31, 104);\n$ember-300: rgb(68, 17, 112);\n$ember-350: rgb(97, 17, 117);\n$ember-400: rgb(128, 15, 115);\n$ember-450: rgb(159, 9, 106);\n$ember-500: rgb(188, 7, 88);\n$ember-550: rgb(215, 21, 58);\n$ember-600: rgb(222, 43, 52);\n$ember-650: rgb(228, 59, 46);\n$ember-700: rgb(233, 73, 39);\n$ember-750: rgb(238, 86, 33);\n$ember-800: rgb(243, 99, 27);\n$ember-850: rgb(247, 115, 0);\n$ember-900: rgb(249, 130, 0);\n$ember-950: rgb(251, 145, 0);\n$ember-1000: rgb(251, 160, 0);\n$ember-1050: rgb(250, 175, 5);\n$earthfire-50: rgb(82, 55, 25);\n$earthfire-100: rgb(95, 54, 13);\n$earthfire-150: rgb(108, 51, 0);\n$earthfire-200: rgb(122, 46, 0);\n$earthfire-250: rgb(135, 38, 0);\n$earthfire-300: rgb(148, 27, 0);\n$earthfire-350: rgb(167, 42, 5);\n$earthfire-400: rgb(185, 56, 11);\n$earthfire-450: rgb(204, 70, 17);\n$earthfire-500: rgb(224, 85, 22);\n$earthfire-550: rgb(243, 99, 27);\n$earthfire-600: rgb(247, 115, 0);\n$earthfire-650: rgb(249, 130, 0);\n$earthfire-700: rgb(251, 145, 0);\n$earthfire-750: rgb(251, 160, 0);\n$earthfire-800: rgb(250, 175, 5);\n$earthfire-850: rgb(250, 187, 59);\n$earthfire-900: rgb(250, 199, 87);\n$earthfire-950: rgb(251, 210, 111);\n$earthfire-1000: rgb(252, 221, 133);\n$earthfire-1050: rgb(253, 231, 154);\n$fuchsia-heat-50: rgb(101, 0, 77);\n$fuchsia-heat-100: rgb(123, 2, 95);\n$fuchsia-heat-150: rgb(146, 4, 114);\n$fuchsia-heat-200: rgb(169, 8, 133);\n$fuchsia-heat-250: rgb(193, 13, 153);\n$fuchsia-heat-300: rgb(217, 18, 174);\n$fuchsia-heat-350: rgb(230, 30, 146);\n$fuchsia-heat-400: rgb(240, 45, 119);\n$fuchsia-heat-450: rgb(245, 62, 91);\n$fuchsia-heat-500: rgb(246, 80, 62);\n$fuchsia-heat-550: rgb(243, 99, 27);\n$fuchsia-heat-600: rgb(247, 115, 0);\n$fuchsia-heat-650: rgb(249, 130, 0);\n$fuchsia-heat-700: rgb(251, 145, 0);\n$fuchsia-heat-750: rgb(251, 160, 0);\n$fuchsia-heat-800: rgb(250, 175, 5);\n$fuchsia-heat-850: rgb(250, 187, 59);\n$fuchsia-heat-900: rgb(250, 199, 87);\n$fuchsia-heat-950: rgb(251, 210, 111);\n$fuchsia-heat-1000: rgb(252, 221, 133);\n$fuchsia-heat-1050: rgb(253, 231, 154);\n$polar-glow-50: rgb(0, 38, 100);\n$polar-glow-100: rgb(1, 51, 128);\n$polar-glow-150: rgb(3, 65, 158);\n$polar-glow-200: rgb(7, 79, 189);\n$polar-glow-250: rgb(13, 93, 220);\n$polar-glow-300: rgb(20, 108, 253);\n$polar-glow-350: rgb(0, 119, 231);\n$polar-glow-400: rgb(0, 126, 208);\n$polar-glow-450: rgb(0, 130, 184);\n$polar-glow-500: rgb(0, 130, 162);\n$polar-glow-550: rgb(46, 128, 142);\n$polar-glow-600: rgb(66, 146, 159);\n$polar-glow-650: rgb(84, 163, 176);\n$polar-glow-700: rgb(103, 182, 193);\n$polar-glow-750: rgb(121, 200, 211);\n$polar-glow-800: rgb(140, 219, 229);\n$polar-glow-850: rgb(154, 223, 229);\n$polar-glow-900: rgb(169, 227, 229);\n$polar-glow-950: rgb(182, 231, 230);\n$polar-glow-1000: rgb(196, 235, 231);\n$polar-glow-1050: rgb(209, 238, 234);\n$glacier-pool-50: rgb(68, 17, 112);\n$glacier-pool-100: rgb(81, 30, 136);\n$glacier-pool-150: rgb(93, 43, 161);\n$glacier-pool-200: rgb(106, 57, 187);\n$glacier-pool-250: rgb(117, 70, 214);\n$glacier-pool-300: rgb(128, 85, 241);\n$glacier-pool-350: rgb(115, 89, 246);\n$glacier-pool-400: rgb(100, 94, 250);\n$glacier-pool-450: rgb(83, 98, 252);\n$glacier-pool-500: rgb(60, 103, 253);\n$glacier-pool-550: rgb(20, 108, 253);\n$glacier-pool-600: rgb(0, 137, 255);\n$glacier-pool-650: rgb(12, 162, 255);\n$glacier-pool-700: rgb(59, 185, 255);\n$glacier-pool-750: rgb(100, 205, 255);\n$glacier-pool-800: rgb(140, 224, 255);\n$glacier-pool-850: rgb(154, 227, 255);\n$glacier-pool-900: rgb(167, 229, 255);\n$glacier-pool-950: rgb(179, 232, 254);\n$glacier-pool-1000: rgb(191, 234, 254);\n$glacier-pool-1050: rgb(203, 237, 253);\n$deep-current-50: rgb(11, 63, 71);\n$deep-current-100: rgb(18, 75, 84);\n$deep-current-150: rgb(25, 88, 98);\n$deep-current-200: rgb(32, 101, 113);\n$deep-current-250: rgb(39, 114, 127);\n$deep-current-300: rgb(46, 128, 142);\n$deep-current-350: rgb(0, 130, 162);\n$deep-current-400: rgb(0, 130, 184);\n$deep-current-450: rgb(0, 126, 208);\n$deep-current-500: rgb(0, 119, 231);\n$deep-current-550: rgb(20, 108, 253);\n$deep-current-600: rgb(0, 137, 255);\n$deep-current-650: rgb(12, 162, 255);\n$deep-current-700: rgb(59, 185, 255);\n$deep-current-750: rgb(100, 205, 255);\n$deep-current-800: rgb(140, 224, 255);\n$deep-current-850: rgb(154, 227, 255);\n$deep-current-900: rgb(167, 229, 255);\n$deep-current-950: rgb(179, 232, 254);\n$deep-current-1000: rgb(191, 234, 254);\n$deep-current-1050: rgb(203, 237, 253);\n$blue-red-50: rgb(0, 38, 100);\n$blue-red-100: rgb(1, 51, 128);\n$blue-red-150: rgb(3, 65, 158);\n$blue-red-200: rgb(7, 79, 189);\n$blue-red-250: rgb(13, 93, 220);\n$blue-red-300: rgb(20, 108, 253);\n$blue-red-350: rgb(76, 142, 255);\n$blue-red-400: rgb(121, 172, 255);\n$blue-red-450: rgb(165, 200, 255);\n$blue-red-500: rgb(210, 228, 255);\n$blue-red-550: rgb(254, 215, 214);\n$blue-red-600: rgb(249, 175, 174);\n$blue-red-650: rgb(241, 134, 135);\n$blue-red-700: rgb(229, 89, 97);\n$blue-red-750: rgb(215, 21, 58);\n$blue-red-800: rgb(191, 15, 52);\n$blue-red-850: rgb(167, 10, 45);\n$blue-red-900: rgb(143, 5, 39);\n$blue-red-950: rgb(121, 2, 32);\n$blue-red-1000: rgb(99, 0, 25);\n$blue-orange-50: rgb(0, 38, 100);\n$blue-orange-100: rgb(1, 51, 128);\n$blue-orange-150: rgb(3, 65, 158);\n$blue-orange-200: rgb(7, 79, 189);\n$blue-orange-250: rgb(13, 93, 220);\n$blue-orange-300: rgb(20, 108, 253);\n$blue-orange-350: rgb(76, 142, 255);\n$blue-orange-400: rgb(121, 172, 255);\n$blue-orange-450: rgb(165, 200, 255);\n$blue-orange-500: rgb(210, 228, 255);\n$blue-orange-550: rgb(255, 226, 214);\n$blue-orange-600: rgb(255, 196, 173);\n$blue-orange-650: rgb(254, 166, 131);\n$blue-orange-700: rgb(250, 134, 87);\n$blue-orange-750: rgb(243, 99, 27);\n$blue-orange-800: rgb(224, 85, 22);\n$blue-orange-850: rgb(204, 70, 17);\n$blue-orange-900: rgb(185, 56, 11);\n$blue-orange-950: rgb(167, 42, 5);\n$blue-orange-1000: rgb(148, 27, 0);\n$purple-yellow-50: rgb(68, 17, 112);\n$purple-yellow-100: rgb(81, 30, 136);\n$purple-yellow-150: rgb(93, 43, 161);\n$purple-yellow-200: rgb(106, 57, 187);\n$purple-yellow-250: rgb(117, 70, 214);\n$purple-yellow-300: rgb(128, 85, 241);\n$purple-yellow-350: rgb(150, 123, 247);\n$purple-yellow-400: rgb(174, 158, 251);\n$purple-yellow-450: rgb(199, 191, 254);\n$purple-yellow-500: rgb(227, 223, 255);\n$purple-yellow-550: rgb(255, 240, 218);\n$purple-yellow-600: rgb(255, 224, 180);\n$purple-yellow-650: rgb(254, 208, 139);\n$purple-yellow-700: rgb(252, 192, 93);\n$purple-yellow-750: rgb(250, 175, 5);\n$purple-yellow-800: rgb(219, 153, 3);\n$purple-yellow-850: rgb(189, 132, 2);\n$purple-yellow-900: rgb(160, 111, 1);\n$purple-yellow-950: rgb(132, 91, 0);\n$purple-yellow-1000: rgb(105, 72, 0);\n$fuchsia-teal-50: rgb(101, 0, 77);\n$fuchsia-teal-100: rgb(123, 2, 95);\n$fuchsia-teal-150: rgb(146, 4, 114);\n$fuchsia-teal-200: rgb(169, 8, 133);\n$fuchsia-teal-250: rgb(193, 13, 153);\n$fuchsia-teal-300: rgb(217, 18, 174);\n$fuchsia-teal-350: rgb(230, 91, 191);\n$fuchsia-teal-400: rgb(240, 136, 207);\n$fuchsia-teal-450: rgb(248, 177, 223);\n$fuchsia-teal-500: rgb(253, 216, 239);\n$fuchsia-teal-550: rgb(214, 229, 232);\n$fuchsia-teal-600: rgb(174, 203, 209);\n$fuchsia-teal-650: rgb(134, 178, 186);\n$fuchsia-teal-700: rgb(93, 153, 164);\n$fuchsia-teal-750: rgb(46, 128, 142);\n$fuchsia-teal-800: rgb(39, 114, 127);\n$fuchsia-teal-850: rgb(32, 101, 113);\n$fuchsia-teal-900: rgb(25, 88, 98);\n$fuchsia-teal-950: rgb(18, 75, 84);\n$fuchsia-teal-1000: rgb(11, 63, 71);\n";
|
|
43383
43495
|
|
|
43384
43496
|
// src/scss/space/global.scss
|
|
43385
|
-
var
|
|
43386
|
-
__export(
|
|
43387
|
-
default: () =>
|
|
43497
|
+
var global_exports13 = {};
|
|
43498
|
+
__export(global_exports13, {
|
|
43499
|
+
default: () => global_default9
|
|
43388
43500
|
});
|
|
43389
|
-
var
|
|
43501
|
+
var global_default9 = "$space-0: 0rem; // Spacing step 0 on the 4px grid (0px at the default root font size). Use for padding, margins, and gaps.\n$space-1: 0.25rem; // Spacing step 1 on the 4px grid (4px at the default root font size). Use for padding, margins, and gaps.\n$space-2: 0.5rem; // Spacing step 2 on the 4px grid (8px at the default root font size). Use for padding, margins, and gaps.\n$space-3: 0.75rem; // Spacing step 3 on the 4px grid (12px at the default root font size). Use for padding, margins, and gaps.\n$space-4: 1rem; // Spacing step 4 on the 4px grid (16px at the default root font size). Use for padding, margins, and gaps.\n$space-5: 1.25rem; // Spacing step 5 on the 4px grid (20px at the default root font size). Use for padding, margins, and gaps.\n$space-6: 1.5rem; // Spacing step 6 on the 4px grid (24px at the default root font size). Use for padding, margins, and gaps.\n$space-8: 2rem; // Spacing step 8 on the 4px grid (32px at the default root font size). Use for padding, margins, and gaps.\n$space-10: 2.5rem; // Spacing step 10 on the 4px grid (40px at the default root font size). Use for padding, margins, and gaps.\n$space-12: 3rem; // Spacing step 12 on the 4px grid (48px at the default root font size). Use for padding, margins, and gaps.\n$space-14: 3.5rem; // Spacing step 14 on the 4px grid (56px at the default root font size). Use for padding, margins, and gaps.\n$space-16: 4rem; // Spacing step 16 on the 4px grid (64px at the default root font size). Use for padding, margins, and gaps.\n";
|
|
43390
43502
|
|
|
43391
43503
|
// src/scss/radius/global.scss
|
|
43392
|
-
var
|
|
43393
|
-
__export(
|
|
43394
|
-
default: () =>
|
|
43504
|
+
var global_exports14 = {};
|
|
43505
|
+
__export(global_exports14, {
|
|
43506
|
+
default: () => global_default10
|
|
43395
43507
|
});
|
|
43396
|
-
var
|
|
43508
|
+
var global_default10 = "$radius-none: 0px; // Square corners \u2014 tables, full-bleed surfaces, and elements flush to container edges.\n$radius-sm: 4px; // Small rounding \u2014 inputs, buttons, tags, and compact controls.\n$radius-md: 8px; // Medium rounding \u2014 cards, panels, and modals.\n$radius-lg: 16px; // Large rounding \u2014 hero surfaces and prominent containers.\n$radius-pill: 9999px; // Fully rounded ends \u2014 pills, badges, and circular icon buttons.\n";
|
|
43397
43509
|
|
|
43398
43510
|
// src/scss/breakpoints/global.scss
|
|
43399
|
-
var
|
|
43400
|
-
__export(
|
|
43401
|
-
default: () =>
|
|
43511
|
+
var global_exports15 = {};
|
|
43512
|
+
__export(global_exports15, {
|
|
43513
|
+
default: () => global_default11
|
|
43402
43514
|
});
|
|
43403
|
-
var
|
|
43515
|
+
var global_default11 = "$breakpoint-xs: 480px; // Extra-small breakpoint \u2014 large phones and up.\n$breakpoint-sm: 768px; // Small breakpoint \u2014 tablets portrait and up.\n$breakpoint-md: 992px; // Medium breakpoint \u2014 tablets landscape / small laptops and up.\n$breakpoint-lg: 1200px; // Large breakpoint \u2014 desktops and up.\n$breakpoint-xl: 1600px; // Extra-large breakpoint \u2014 wide desktops and up.\n";
|
|
43516
|
+
|
|
43517
|
+
// src/scss/typography/global.scss
|
|
43518
|
+
var global_exports16 = {};
|
|
43519
|
+
__export(global_exports16, {
|
|
43520
|
+
default: () => global_default12
|
|
43521
|
+
});
|
|
43522
|
+
var global_default12 = "$font-family-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; // Primary typeface \u2014 Public Sans (the NSW Government brand typeface) with system, Helvetica/Arial, and emoji fallbacks. Use for all UI and body text.\n$font-family-display: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; // Display typeface \u2014 currently the same stack as sans; a separate token so display/heading type can diverge from body text later without a breaking change.\n$font-family-system: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; // System typeface \u2014 currently the same stack as sans; a separate token for system-chrome contexts (toasts, native-feeling UI) that may diverge later.\n$font-family-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace; // Monospace stack \u2014 JetBrains Mono with ui-monospace and system fallbacks for code, tabular data, and technical content.\n$font-size-12: 0.75rem; // Font size 12px (0.75rem) \u2014 the step name is the px value at the default root font size.\n$font-size-14: 0.875rem; // Font size 14px (0.875rem) \u2014 the step name is the px value at the default root font size.\n$font-size-16: 1rem; // Font size 16px (1rem) \u2014 the step name is the px value at the default root font size.\n$font-size-18: 1.125rem; // Font size 18px (1.125rem) \u2014 the step name is the px value at the default root font size.\n$font-size-20: 1.25rem; // Font size 20px (1.25rem) \u2014 the step name is the px value at the default root font size.\n$font-size-22: 1.375rem; // Font size 22px (1.375rem) \u2014 the step name is the px value at the default root font size.\n$font-size-24: 1.5rem; // Font size 24px (1.5rem) \u2014 the step name is the px value at the default root font size.\n$font-size-30: 1.875rem; // Font size 30px (1.875rem) \u2014 the step name is the px value at the default root font size.\n$font-size-36: 2.25rem; // Font size 36px (2.25rem) \u2014 the step name is the px value at the default root font size.\n$font-size-48: 3rem; // Font size 48px (3rem) \u2014 the step name is the px value at the default root font size.\n$font-size-56: 3.5rem; // Font size 56px (3.5rem) \u2014 the step name is the px value at the default root font size.\n$font-size-64: 4rem; // Font size 64px (4rem) \u2014 the step name is the px value at the default root font size.\n$font-weight-light: 300; // Light (300) \u2014 large display text only; avoid at body sizes for legibility.\n$font-weight-regular: 400; // Regular (400) \u2014 default body text weight.\n$font-weight-medium: 500; // Medium (500) \u2014 subtle emphasis, labels, and navigation.\n$font-weight-semibold: 600; // Semibold (600) \u2014 headings and strong emphasis.\n$font-weight-bold: 700; // Bold (700) \u2014 highest emphasis; key figures and primary headings.\n$line-height-none: 1; // Solid (1) \u2014 display headings set at their own size (48/48, 56/56, 64/64 in the prose scale).\n$line-height-tight: 1.2; // Tight (1.2) \u2014 large headings (36/30 in the prose scale).\n$line-height-snug: 1.3333333; // Snug (1.3333333) \u2014 mid-size headings (32/24, 40/30 in the prose scale).\n$line-height-base: 1.5; // Base (1.5) \u2014 default for UI text and dense content (24/16, 36/24 in the prose scale); meets WCAG 1.4.12 text-spacing.\n$line-height-relaxed: 1.6; // Relaxed (1.6) \u2014 subheadings and lead text (32/20 in the prose scale).\n$line-height-loose: 1.75; // Loose (1.75) \u2014 long-form body text (28/16 in the prose scale).\n$letter-spacing-tight: -0.0125em; // Tight tracking (-0.0125em) \u2014 large display headings. Value is an em multiplier; string outputs render it with the em unit.\n$letter-spacing-normal: 0em; // Normal tracking (0em) \u2014 default for body text. Value is an em multiplier; string outputs render it with the em unit.\n$letter-spacing-wide: 0.025em; // Wide tracking (0.025em) \u2014 small caps, overlines, and small labels. Value is an em multiplier; string outputs render it with the em unit.\n";
|
|
43404
43523
|
|
|
43405
43524
|
// src/tailwind/colors/global/hex.css
|
|
43406
43525
|
var hex_exports25 = {};
|
|
@@ -43571,25 +43690,32 @@ __export(rgb_exports30, {
|
|
|
43571
43690
|
var rgb_default24 = "@theme {\n --color-ember-50: var(--ember-50);\n --color-ember-100: var(--ember-100);\n --color-ember-150: var(--ember-150);\n --color-ember-200: var(--ember-200);\n --color-ember-250: var(--ember-250);\n --color-ember-300: var(--ember-300);\n --color-ember-350: var(--ember-350);\n --color-ember-400: var(--ember-400);\n --color-ember-450: var(--ember-450);\n --color-ember-500: var(--ember-500);\n --color-ember-550: var(--ember-550);\n --color-ember-600: var(--ember-600);\n --color-ember-650: var(--ember-650);\n --color-ember-700: var(--ember-700);\n --color-ember-750: var(--ember-750);\n --color-ember-800: var(--ember-800);\n --color-ember-850: var(--ember-850);\n --color-ember-900: var(--ember-900);\n --color-ember-950: var(--ember-950);\n --color-ember-1000: var(--ember-1000);\n --color-ember-1050: var(--ember-1050);\n --color-earthfire-50: var(--earthfire-50);\n --color-earthfire-100: var(--earthfire-100);\n --color-earthfire-150: var(--earthfire-150);\n --color-earthfire-200: var(--earthfire-200);\n --color-earthfire-250: var(--earthfire-250);\n --color-earthfire-300: var(--earthfire-300);\n --color-earthfire-350: var(--earthfire-350);\n --color-earthfire-400: var(--earthfire-400);\n --color-earthfire-450: var(--earthfire-450);\n --color-earthfire-500: var(--earthfire-500);\n --color-earthfire-550: var(--earthfire-550);\n --color-earthfire-600: var(--earthfire-600);\n --color-earthfire-650: var(--earthfire-650);\n --color-earthfire-700: var(--earthfire-700);\n --color-earthfire-750: var(--earthfire-750);\n --color-earthfire-800: var(--earthfire-800);\n --color-earthfire-850: var(--earthfire-850);\n --color-earthfire-900: var(--earthfire-900);\n --color-earthfire-950: var(--earthfire-950);\n --color-earthfire-1000: var(--earthfire-1000);\n --color-earthfire-1050: var(--earthfire-1050);\n --color-fuchsia-heat-50: var(--fuchsia-heat-50);\n --color-fuchsia-heat-100: var(--fuchsia-heat-100);\n --color-fuchsia-heat-150: var(--fuchsia-heat-150);\n --color-fuchsia-heat-200: var(--fuchsia-heat-200);\n --color-fuchsia-heat-250: var(--fuchsia-heat-250);\n --color-fuchsia-heat-300: var(--fuchsia-heat-300);\n --color-fuchsia-heat-350: var(--fuchsia-heat-350);\n --color-fuchsia-heat-400: var(--fuchsia-heat-400);\n --color-fuchsia-heat-450: var(--fuchsia-heat-450);\n --color-fuchsia-heat-500: var(--fuchsia-heat-500);\n --color-fuchsia-heat-550: var(--fuchsia-heat-550);\n --color-fuchsia-heat-600: var(--fuchsia-heat-600);\n --color-fuchsia-heat-650: var(--fuchsia-heat-650);\n --color-fuchsia-heat-700: var(--fuchsia-heat-700);\n --color-fuchsia-heat-750: var(--fuchsia-heat-750);\n --color-fuchsia-heat-800: var(--fuchsia-heat-800);\n --color-fuchsia-heat-850: var(--fuchsia-heat-850);\n --color-fuchsia-heat-900: var(--fuchsia-heat-900);\n --color-fuchsia-heat-950: var(--fuchsia-heat-950);\n --color-fuchsia-heat-1000: var(--fuchsia-heat-1000);\n --color-fuchsia-heat-1050: var(--fuchsia-heat-1050);\n --color-polar-glow-50: var(--polar-glow-50);\n --color-polar-glow-100: var(--polar-glow-100);\n --color-polar-glow-150: var(--polar-glow-150);\n --color-polar-glow-200: var(--polar-glow-200);\n --color-polar-glow-250: var(--polar-glow-250);\n --color-polar-glow-300: var(--polar-glow-300);\n --color-polar-glow-350: var(--polar-glow-350);\n --color-polar-glow-400: var(--polar-glow-400);\n --color-polar-glow-450: var(--polar-glow-450);\n --color-polar-glow-500: var(--polar-glow-500);\n --color-polar-glow-550: var(--polar-glow-550);\n --color-polar-glow-600: var(--polar-glow-600);\n --color-polar-glow-650: var(--polar-glow-650);\n --color-polar-glow-700: var(--polar-glow-700);\n --color-polar-glow-750: var(--polar-glow-750);\n --color-polar-glow-800: var(--polar-glow-800);\n --color-polar-glow-850: var(--polar-glow-850);\n --color-polar-glow-900: var(--polar-glow-900);\n --color-polar-glow-950: var(--polar-glow-950);\n --color-polar-glow-1000: var(--polar-glow-1000);\n --color-polar-glow-1050: var(--polar-glow-1050);\n --color-glacier-pool-50: var(--glacier-pool-50);\n --color-glacier-pool-100: var(--glacier-pool-100);\n --color-glacier-pool-150: var(--glacier-pool-150);\n --color-glacier-pool-200: var(--glacier-pool-200);\n --color-glacier-pool-250: var(--glacier-pool-250);\n --color-glacier-pool-300: var(--glacier-pool-300);\n --color-glacier-pool-350: var(--glacier-pool-350);\n --color-glacier-pool-400: var(--glacier-pool-400);\n --color-glacier-pool-450: var(--glacier-pool-450);\n --color-glacier-pool-500: var(--glacier-pool-500);\n --color-glacier-pool-550: var(--glacier-pool-550);\n --color-glacier-pool-600: var(--glacier-pool-600);\n --color-glacier-pool-650: var(--glacier-pool-650);\n --color-glacier-pool-700: var(--glacier-pool-700);\n --color-glacier-pool-750: var(--glacier-pool-750);\n --color-glacier-pool-800: var(--glacier-pool-800);\n --color-glacier-pool-850: var(--glacier-pool-850);\n --color-glacier-pool-900: var(--glacier-pool-900);\n --color-glacier-pool-950: var(--glacier-pool-950);\n --color-glacier-pool-1000: var(--glacier-pool-1000);\n --color-glacier-pool-1050: var(--glacier-pool-1050);\n --color-deep-current-50: var(--deep-current-50);\n --color-deep-current-100: var(--deep-current-100);\n --color-deep-current-150: var(--deep-current-150);\n --color-deep-current-200: var(--deep-current-200);\n --color-deep-current-250: var(--deep-current-250);\n --color-deep-current-300: var(--deep-current-300);\n --color-deep-current-350: var(--deep-current-350);\n --color-deep-current-400: var(--deep-current-400);\n --color-deep-current-450: var(--deep-current-450);\n --color-deep-current-500: var(--deep-current-500);\n --color-deep-current-550: var(--deep-current-550);\n --color-deep-current-600: var(--deep-current-600);\n --color-deep-current-650: var(--deep-current-650);\n --color-deep-current-700: var(--deep-current-700);\n --color-deep-current-750: var(--deep-current-750);\n --color-deep-current-800: var(--deep-current-800);\n --color-deep-current-850: var(--deep-current-850);\n --color-deep-current-900: var(--deep-current-900);\n --color-deep-current-950: var(--deep-current-950);\n --color-deep-current-1000: var(--deep-current-1000);\n --color-deep-current-1050: var(--deep-current-1050);\n --color-blue-red-50: var(--blue-red-50);\n --color-blue-red-100: var(--blue-red-100);\n --color-blue-red-150: var(--blue-red-150);\n --color-blue-red-200: var(--blue-red-200);\n --color-blue-red-250: var(--blue-red-250);\n --color-blue-red-300: var(--blue-red-300);\n --color-blue-red-350: var(--blue-red-350);\n --color-blue-red-400: var(--blue-red-400);\n --color-blue-red-450: var(--blue-red-450);\n --color-blue-red-500: var(--blue-red-500);\n --color-blue-red-550: var(--blue-red-550);\n --color-blue-red-600: var(--blue-red-600);\n --color-blue-red-650: var(--blue-red-650);\n --color-blue-red-700: var(--blue-red-700);\n --color-blue-red-750: var(--blue-red-750);\n --color-blue-red-800: var(--blue-red-800);\n --color-blue-red-850: var(--blue-red-850);\n --color-blue-red-900: var(--blue-red-900);\n --color-blue-red-950: var(--blue-red-950);\n --color-blue-red-1000: var(--blue-red-1000);\n --color-blue-orange-50: var(--blue-orange-50);\n --color-blue-orange-100: var(--blue-orange-100);\n --color-blue-orange-150: var(--blue-orange-150);\n --color-blue-orange-200: var(--blue-orange-200);\n --color-blue-orange-250: var(--blue-orange-250);\n --color-blue-orange-300: var(--blue-orange-300);\n --color-blue-orange-350: var(--blue-orange-350);\n --color-blue-orange-400: var(--blue-orange-400);\n --color-blue-orange-450: var(--blue-orange-450);\n --color-blue-orange-500: var(--blue-orange-500);\n --color-blue-orange-550: var(--blue-orange-550);\n --color-blue-orange-600: var(--blue-orange-600);\n --color-blue-orange-650: var(--blue-orange-650);\n --color-blue-orange-700: var(--blue-orange-700);\n --color-blue-orange-750: var(--blue-orange-750);\n --color-blue-orange-800: var(--blue-orange-800);\n --color-blue-orange-850: var(--blue-orange-850);\n --color-blue-orange-900: var(--blue-orange-900);\n --color-blue-orange-950: var(--blue-orange-950);\n --color-blue-orange-1000: var(--blue-orange-1000);\n --color-purple-yellow-50: var(--purple-yellow-50);\n --color-purple-yellow-100: var(--purple-yellow-100);\n --color-purple-yellow-150: var(--purple-yellow-150);\n --color-purple-yellow-200: var(--purple-yellow-200);\n --color-purple-yellow-250: var(--purple-yellow-250);\n --color-purple-yellow-300: var(--purple-yellow-300);\n --color-purple-yellow-350: var(--purple-yellow-350);\n --color-purple-yellow-400: var(--purple-yellow-400);\n --color-purple-yellow-450: var(--purple-yellow-450);\n --color-purple-yellow-500: var(--purple-yellow-500);\n --color-purple-yellow-550: var(--purple-yellow-550);\n --color-purple-yellow-600: var(--purple-yellow-600);\n --color-purple-yellow-650: var(--purple-yellow-650);\n --color-purple-yellow-700: var(--purple-yellow-700);\n --color-purple-yellow-750: var(--purple-yellow-750);\n --color-purple-yellow-800: var(--purple-yellow-800);\n --color-purple-yellow-850: var(--purple-yellow-850);\n --color-purple-yellow-900: var(--purple-yellow-900);\n --color-purple-yellow-950: var(--purple-yellow-950);\n --color-purple-yellow-1000: var(--purple-yellow-1000);\n --color-fuchsia-teal-50: var(--fuchsia-teal-50);\n --color-fuchsia-teal-100: var(--fuchsia-teal-100);\n --color-fuchsia-teal-150: var(--fuchsia-teal-150);\n --color-fuchsia-teal-200: var(--fuchsia-teal-200);\n --color-fuchsia-teal-250: var(--fuchsia-teal-250);\n --color-fuchsia-teal-300: var(--fuchsia-teal-300);\n --color-fuchsia-teal-350: var(--fuchsia-teal-350);\n --color-fuchsia-teal-400: var(--fuchsia-teal-400);\n --color-fuchsia-teal-450: var(--fuchsia-teal-450);\n --color-fuchsia-teal-500: var(--fuchsia-teal-500);\n --color-fuchsia-teal-550: var(--fuchsia-teal-550);\n --color-fuchsia-teal-600: var(--fuchsia-teal-600);\n --color-fuchsia-teal-650: var(--fuchsia-teal-650);\n --color-fuchsia-teal-700: var(--fuchsia-teal-700);\n --color-fuchsia-teal-750: var(--fuchsia-teal-750);\n --color-fuchsia-teal-800: var(--fuchsia-teal-800);\n --color-fuchsia-teal-850: var(--fuchsia-teal-850);\n --color-fuchsia-teal-900: var(--fuchsia-teal-900);\n --color-fuchsia-teal-950: var(--fuchsia-teal-950);\n --color-fuchsia-teal-1000: var(--fuchsia-teal-1000);\n}\n\n:root {\n --ember-50: rgb(34, 39, 43);\n --ember-100: rgb(28, 42, 59);\n --ember-150: rgb(28, 42, 76);\n --ember-200: rgb(37, 38, 92);\n --ember-250: rgb(51, 31, 104);\n --ember-300: rgb(68, 17, 112);\n --ember-350: rgb(97, 17, 117);\n --ember-400: rgb(128, 15, 115);\n --ember-450: rgb(159, 9, 106);\n --ember-500: rgb(188, 7, 88);\n --ember-550: rgb(215, 21, 58);\n --ember-600: rgb(222, 43, 52);\n --ember-650: rgb(228, 59, 46);\n --ember-700: rgb(233, 73, 39);\n --ember-750: rgb(238, 86, 33);\n --ember-800: rgb(243, 99, 27);\n --ember-850: rgb(247, 115, 0);\n --ember-900: rgb(249, 130, 0);\n --ember-950: rgb(251, 145, 0);\n --ember-1000: rgb(251, 160, 0);\n --ember-1050: rgb(250, 175, 5);\n --earthfire-50: rgb(82, 55, 25);\n --earthfire-100: rgb(95, 54, 13);\n --earthfire-150: rgb(108, 51, 0);\n --earthfire-200: rgb(122, 46, 0);\n --earthfire-250: rgb(135, 38, 0);\n --earthfire-300: rgb(148, 27, 0);\n --earthfire-350: rgb(167, 42, 5);\n --earthfire-400: rgb(185, 56, 11);\n --earthfire-450: rgb(204, 70, 17);\n --earthfire-500: rgb(224, 85, 22);\n --earthfire-550: rgb(243, 99, 27);\n --earthfire-600: rgb(247, 115, 0);\n --earthfire-650: rgb(249, 130, 0);\n --earthfire-700: rgb(251, 145, 0);\n --earthfire-750: rgb(251, 160, 0);\n --earthfire-800: rgb(250, 175, 5);\n --earthfire-850: rgb(250, 187, 59);\n --earthfire-900: rgb(250, 199, 87);\n --earthfire-950: rgb(251, 210, 111);\n --earthfire-1000: rgb(252, 221, 133);\n --earthfire-1050: rgb(253, 231, 154);\n --fuchsia-heat-50: rgb(101, 0, 77);\n --fuchsia-heat-100: rgb(123, 2, 95);\n --fuchsia-heat-150: rgb(146, 4, 114);\n --fuchsia-heat-200: rgb(169, 8, 133);\n --fuchsia-heat-250: rgb(193, 13, 153);\n --fuchsia-heat-300: rgb(217, 18, 174);\n --fuchsia-heat-350: rgb(230, 30, 146);\n --fuchsia-heat-400: rgb(240, 45, 119);\n --fuchsia-heat-450: rgb(245, 62, 91);\n --fuchsia-heat-500: rgb(246, 80, 62);\n --fuchsia-heat-550: rgb(243, 99, 27);\n --fuchsia-heat-600: rgb(247, 115, 0);\n --fuchsia-heat-650: rgb(249, 130, 0);\n --fuchsia-heat-700: rgb(251, 145, 0);\n --fuchsia-heat-750: rgb(251, 160, 0);\n --fuchsia-heat-800: rgb(250, 175, 5);\n --fuchsia-heat-850: rgb(250, 187, 59);\n --fuchsia-heat-900: rgb(250, 199, 87);\n --fuchsia-heat-950: rgb(251, 210, 111);\n --fuchsia-heat-1000: rgb(252, 221, 133);\n --fuchsia-heat-1050: rgb(253, 231, 154);\n --polar-glow-50: rgb(0, 38, 100);\n --polar-glow-100: rgb(1, 51, 128);\n --polar-glow-150: rgb(3, 65, 158);\n --polar-glow-200: rgb(7, 79, 189);\n --polar-glow-250: rgb(13, 93, 220);\n --polar-glow-300: rgb(20, 108, 253);\n --polar-glow-350: rgb(0, 119, 231);\n --polar-glow-400: rgb(0, 126, 208);\n --polar-glow-450: rgb(0, 130, 184);\n --polar-glow-500: rgb(0, 130, 162);\n --polar-glow-550: rgb(46, 128, 142);\n --polar-glow-600: rgb(66, 146, 159);\n --polar-glow-650: rgb(84, 163, 176);\n --polar-glow-700: rgb(103, 182, 193);\n --polar-glow-750: rgb(121, 200, 211);\n --polar-glow-800: rgb(140, 219, 229);\n --polar-glow-850: rgb(154, 223, 229);\n --polar-glow-900: rgb(169, 227, 229);\n --polar-glow-950: rgb(182, 231, 230);\n --polar-glow-1000: rgb(196, 235, 231);\n --polar-glow-1050: rgb(209, 238, 234);\n --glacier-pool-50: rgb(68, 17, 112);\n --glacier-pool-100: rgb(81, 30, 136);\n --glacier-pool-150: rgb(93, 43, 161);\n --glacier-pool-200: rgb(106, 57, 187);\n --glacier-pool-250: rgb(117, 70, 214);\n --glacier-pool-300: rgb(128, 85, 241);\n --glacier-pool-350: rgb(115, 89, 246);\n --glacier-pool-400: rgb(100, 94, 250);\n --glacier-pool-450: rgb(83, 98, 252);\n --glacier-pool-500: rgb(60, 103, 253);\n --glacier-pool-550: rgb(20, 108, 253);\n --glacier-pool-600: rgb(0, 137, 255);\n --glacier-pool-650: rgb(12, 162, 255);\n --glacier-pool-700: rgb(59, 185, 255);\n --glacier-pool-750: rgb(100, 205, 255);\n --glacier-pool-800: rgb(140, 224, 255);\n --glacier-pool-850: rgb(154, 227, 255);\n --glacier-pool-900: rgb(167, 229, 255);\n --glacier-pool-950: rgb(179, 232, 254);\n --glacier-pool-1000: rgb(191, 234, 254);\n --glacier-pool-1050: rgb(203, 237, 253);\n --deep-current-50: rgb(11, 63, 71);\n --deep-current-100: rgb(18, 75, 84);\n --deep-current-150: rgb(25, 88, 98);\n --deep-current-200: rgb(32, 101, 113);\n --deep-current-250: rgb(39, 114, 127);\n --deep-current-300: rgb(46, 128, 142);\n --deep-current-350: rgb(0, 130, 162);\n --deep-current-400: rgb(0, 130, 184);\n --deep-current-450: rgb(0, 126, 208);\n --deep-current-500: rgb(0, 119, 231);\n --deep-current-550: rgb(20, 108, 253);\n --deep-current-600: rgb(0, 137, 255);\n --deep-current-650: rgb(12, 162, 255);\n --deep-current-700: rgb(59, 185, 255);\n --deep-current-750: rgb(100, 205, 255);\n --deep-current-800: rgb(140, 224, 255);\n --deep-current-850: rgb(154, 227, 255);\n --deep-current-900: rgb(167, 229, 255);\n --deep-current-950: rgb(179, 232, 254);\n --deep-current-1000: rgb(191, 234, 254);\n --deep-current-1050: rgb(203, 237, 253);\n --blue-red-50: rgb(0, 38, 100);\n --blue-red-100: rgb(1, 51, 128);\n --blue-red-150: rgb(3, 65, 158);\n --blue-red-200: rgb(7, 79, 189);\n --blue-red-250: rgb(13, 93, 220);\n --blue-red-300: rgb(20, 108, 253);\n --blue-red-350: rgb(76, 142, 255);\n --blue-red-400: rgb(121, 172, 255);\n --blue-red-450: rgb(165, 200, 255);\n --blue-red-500: rgb(210, 228, 255);\n --blue-red-550: rgb(254, 215, 214);\n --blue-red-600: rgb(249, 175, 174);\n --blue-red-650: rgb(241, 134, 135);\n --blue-red-700: rgb(229, 89, 97);\n --blue-red-750: rgb(215, 21, 58);\n --blue-red-800: rgb(191, 15, 52);\n --blue-red-850: rgb(167, 10, 45);\n --blue-red-900: rgb(143, 5, 39);\n --blue-red-950: rgb(121, 2, 32);\n --blue-red-1000: rgb(99, 0, 25);\n --blue-orange-50: rgb(0, 38, 100);\n --blue-orange-100: rgb(1, 51, 128);\n --blue-orange-150: rgb(3, 65, 158);\n --blue-orange-200: rgb(7, 79, 189);\n --blue-orange-250: rgb(13, 93, 220);\n --blue-orange-300: rgb(20, 108, 253);\n --blue-orange-350: rgb(76, 142, 255);\n --blue-orange-400: rgb(121, 172, 255);\n --blue-orange-450: rgb(165, 200, 255);\n --blue-orange-500: rgb(210, 228, 255);\n --blue-orange-550: rgb(255, 226, 214);\n --blue-orange-600: rgb(255, 196, 173);\n --blue-orange-650: rgb(254, 166, 131);\n --blue-orange-700: rgb(250, 134, 87);\n --blue-orange-750: rgb(243, 99, 27);\n --blue-orange-800: rgb(224, 85, 22);\n --blue-orange-850: rgb(204, 70, 17);\n --blue-orange-900: rgb(185, 56, 11);\n --blue-orange-950: rgb(167, 42, 5);\n --blue-orange-1000: rgb(148, 27, 0);\n --purple-yellow-50: rgb(68, 17, 112);\n --purple-yellow-100: rgb(81, 30, 136);\n --purple-yellow-150: rgb(93, 43, 161);\n --purple-yellow-200: rgb(106, 57, 187);\n --purple-yellow-250: rgb(117, 70, 214);\n --purple-yellow-300: rgb(128, 85, 241);\n --purple-yellow-350: rgb(150, 123, 247);\n --purple-yellow-400: rgb(174, 158, 251);\n --purple-yellow-450: rgb(199, 191, 254);\n --purple-yellow-500: rgb(227, 223, 255);\n --purple-yellow-550: rgb(255, 240, 218);\n --purple-yellow-600: rgb(255, 224, 180);\n --purple-yellow-650: rgb(254, 208, 139);\n --purple-yellow-700: rgb(252, 192, 93);\n --purple-yellow-750: rgb(250, 175, 5);\n --purple-yellow-800: rgb(219, 153, 3);\n --purple-yellow-850: rgb(189, 132, 2);\n --purple-yellow-900: rgb(160, 111, 1);\n --purple-yellow-950: rgb(132, 91, 0);\n --purple-yellow-1000: rgb(105, 72, 0);\n --fuchsia-teal-50: rgb(101, 0, 77);\n --fuchsia-teal-100: rgb(123, 2, 95);\n --fuchsia-teal-150: rgb(146, 4, 114);\n --fuchsia-teal-200: rgb(169, 8, 133);\n --fuchsia-teal-250: rgb(193, 13, 153);\n --fuchsia-teal-300: rgb(217, 18, 174);\n --fuchsia-teal-350: rgb(230, 91, 191);\n --fuchsia-teal-400: rgb(240, 136, 207);\n --fuchsia-teal-450: rgb(248, 177, 223);\n --fuchsia-teal-500: rgb(253, 216, 239);\n --fuchsia-teal-550: rgb(214, 229, 232);\n --fuchsia-teal-600: rgb(174, 203, 209);\n --fuchsia-teal-650: rgb(134, 178, 186);\n --fuchsia-teal-700: rgb(93, 153, 164);\n --fuchsia-teal-750: rgb(46, 128, 142);\n --fuchsia-teal-800: rgb(39, 114, 127);\n --fuchsia-teal-850: rgb(32, 101, 113);\n --fuchsia-teal-900: rgb(25, 88, 98);\n --fuchsia-teal-950: rgb(18, 75, 84);\n --fuchsia-teal-1000: rgb(11, 63, 71);\n}\n";
|
|
43572
43691
|
|
|
43573
43692
|
// src/tailwind/space/global.css
|
|
43574
|
-
var
|
|
43575
|
-
__export(
|
|
43576
|
-
default: () =>
|
|
43693
|
+
var global_exports17 = {};
|
|
43694
|
+
__export(global_exports17, {
|
|
43695
|
+
default: () => global_default13
|
|
43577
43696
|
});
|
|
43578
|
-
var
|
|
43697
|
+
var global_default13 = "@theme {\n --spacing-0: 0rem;\n --spacing-1: 0.25rem;\n --spacing-2: 0.5rem;\n --spacing-3: 0.75rem;\n --spacing-4: 1rem;\n --spacing-5: 1.25rem;\n --spacing-6: 1.5rem;\n --spacing-8: 2rem;\n --spacing-10: 2.5rem;\n --spacing-12: 3rem;\n --spacing-14: 3.5rem;\n --spacing-16: 4rem;\n}\n";
|
|
43579
43698
|
|
|
43580
43699
|
// src/tailwind/radius/global.css
|
|
43581
|
-
var
|
|
43582
|
-
__export(
|
|
43583
|
-
default: () =>
|
|
43700
|
+
var global_exports18 = {};
|
|
43701
|
+
__export(global_exports18, {
|
|
43702
|
+
default: () => global_default14
|
|
43584
43703
|
});
|
|
43585
|
-
var
|
|
43704
|
+
var global_default14 = "@theme {\n --radius-none: 0px;\n --radius-sm: 4px;\n --radius-md: 8px;\n --radius-lg: 16px;\n --radius-pill: 9999px;\n}\n";
|
|
43586
43705
|
|
|
43587
43706
|
// src/tailwind/breakpoints/global.css
|
|
43588
|
-
var
|
|
43589
|
-
__export(
|
|
43590
|
-
default: () =>
|
|
43707
|
+
var global_exports19 = {};
|
|
43708
|
+
__export(global_exports19, {
|
|
43709
|
+
default: () => global_default15
|
|
43591
43710
|
});
|
|
43592
|
-
var
|
|
43711
|
+
var global_default15 = "@theme {\n --breakpoint-xs: 480px;\n --breakpoint-sm: 768px;\n --breakpoint-md: 992px;\n --breakpoint-lg: 1200px;\n --breakpoint-xl: 1600px;\n}\n";
|
|
43712
|
+
|
|
43713
|
+
// src/tailwind/typography/global.css
|
|
43714
|
+
var global_exports20 = {};
|
|
43715
|
+
__export(global_exports20, {
|
|
43716
|
+
default: () => global_default16
|
|
43717
|
+
});
|
|
43718
|
+
var global_default16 = "@theme {\n --font-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --font-display: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --font-system: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;\n --text-12: 0.75rem;\n --text-14: 0.875rem;\n --text-16: 1rem;\n --text-18: 1.125rem;\n --text-20: 1.25rem;\n --text-22: 1.375rem;\n --text-24: 1.5rem;\n --text-30: 1.875rem;\n --text-36: 2.25rem;\n --text-48: 3rem;\n --text-56: 3.5rem;\n --text-64: 4rem;\n --font-weight-light: 300;\n --font-weight-regular: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n --leading-none: 1;\n --leading-tight: 1.2;\n --leading-snug: 1.3333333;\n --leading-base: 1.5;\n --leading-relaxed: 1.6;\n --leading-loose: 1.75;\n --tracking-tight: -0.0125em;\n --tracking-normal: 0em;\n --tracking-wide: 0.025em;\n}\n";
|
|
43593
43719
|
|
|
43594
43720
|
// src/ts/colors/global/hex.ts
|
|
43595
43721
|
var hex_exports31 = {};
|
|
@@ -47384,8 +47510,8 @@ var fuchsiaTeal8 = {
|
|
|
47384
47510
|
};
|
|
47385
47511
|
|
|
47386
47512
|
// src/ts/space/global.ts
|
|
47387
|
-
var
|
|
47388
|
-
__export(
|
|
47513
|
+
var global_exports21 = {};
|
|
47514
|
+
__export(global_exports21, {
|
|
47389
47515
|
space: () => space2
|
|
47390
47516
|
});
|
|
47391
47517
|
var space2 = {
|
|
@@ -47404,8 +47530,8 @@ var space2 = {
|
|
|
47404
47530
|
};
|
|
47405
47531
|
|
|
47406
47532
|
// src/ts/radius/global.ts
|
|
47407
|
-
var
|
|
47408
|
-
__export(
|
|
47533
|
+
var global_exports22 = {};
|
|
47534
|
+
__export(global_exports22, {
|
|
47409
47535
|
radius: () => radius2
|
|
47410
47536
|
});
|
|
47411
47537
|
var radius2 = {
|
|
@@ -47417,8 +47543,8 @@ var radius2 = {
|
|
|
47417
47543
|
};
|
|
47418
47544
|
|
|
47419
47545
|
// src/ts/breakpoints/global.ts
|
|
47420
|
-
var
|
|
47421
|
-
__export(
|
|
47546
|
+
var global_exports23 = {};
|
|
47547
|
+
__export(global_exports23, {
|
|
47422
47548
|
breakpoint: () => breakpoint2
|
|
47423
47549
|
});
|
|
47424
47550
|
var breakpoint2 = {
|
|
@@ -47429,6 +47555,56 @@ var breakpoint2 = {
|
|
|
47429
47555
|
xl: "1600px"
|
|
47430
47556
|
};
|
|
47431
47557
|
|
|
47558
|
+
// src/ts/typography/global.ts
|
|
47559
|
+
var global_exports24 = {};
|
|
47560
|
+
__export(global_exports24, {
|
|
47561
|
+
fontFamily: () => fontFamily2,
|
|
47562
|
+
fontSize: () => fontSize2,
|
|
47563
|
+
fontWeight: () => fontWeight2,
|
|
47564
|
+
letterSpacing: () => letterSpacing2,
|
|
47565
|
+
lineHeight: () => lineHeight2
|
|
47566
|
+
});
|
|
47567
|
+
var fontFamily2 = {
|
|
47568
|
+
sans: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47569
|
+
display: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47570
|
+
system: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47571
|
+
mono: "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace"
|
|
47572
|
+
};
|
|
47573
|
+
var fontSize2 = {
|
|
47574
|
+
"12": "0.75rem",
|
|
47575
|
+
"14": "0.875rem",
|
|
47576
|
+
"16": "1rem",
|
|
47577
|
+
"18": "1.125rem",
|
|
47578
|
+
"20": "1.25rem",
|
|
47579
|
+
"22": "1.375rem",
|
|
47580
|
+
"24": "1.5rem",
|
|
47581
|
+
"30": "1.875rem",
|
|
47582
|
+
"36": "2.25rem",
|
|
47583
|
+
"48": "3rem",
|
|
47584
|
+
"56": "3.5rem",
|
|
47585
|
+
"64": "4rem"
|
|
47586
|
+
};
|
|
47587
|
+
var fontWeight2 = {
|
|
47588
|
+
light: 300,
|
|
47589
|
+
regular: 400,
|
|
47590
|
+
medium: 500,
|
|
47591
|
+
semibold: 600,
|
|
47592
|
+
bold: 700
|
|
47593
|
+
};
|
|
47594
|
+
var lineHeight2 = {
|
|
47595
|
+
none: 1,
|
|
47596
|
+
tight: 1.2,
|
|
47597
|
+
snug: 1.3333333,
|
|
47598
|
+
base: 1.5,
|
|
47599
|
+
relaxed: 1.6,
|
|
47600
|
+
loose: 1.75
|
|
47601
|
+
};
|
|
47602
|
+
var letterSpacing2 = {
|
|
47603
|
+
tight: "-0.0125em",
|
|
47604
|
+
normal: "0em",
|
|
47605
|
+
wide: "0.025em"
|
|
47606
|
+
};
|
|
47607
|
+
|
|
47432
47608
|
// src/index.ts
|
|
47433
47609
|
var globalColorHex = require_hex();
|
|
47434
47610
|
var globalColorHsl = require_hsl();
|
|
@@ -47481,6 +47657,7 @@ var dataVisualisationJsonRgb = require_rgb12();
|
|
|
47481
47657
|
var spaceJsonGlobal = require_global();
|
|
47482
47658
|
var radiusJsonGlobal = require_global2();
|
|
47483
47659
|
var breakpointsJsonGlobal = require_global3();
|
|
47660
|
+
var typographyJsonGlobal = require_global4();
|
|
47484
47661
|
var tokens = {
|
|
47485
47662
|
colors: {
|
|
47486
47663
|
global: { hex: globalColorHex, hsl: globalColorHsl, oklch: globalColorOklch, rgb: globalColorRgb },
|
|
@@ -47503,7 +47680,8 @@ var tokens = {
|
|
|
47503
47680
|
},
|
|
47504
47681
|
space: { global: global_exports },
|
|
47505
47682
|
radius: { global: global_exports2 },
|
|
47506
|
-
breakpoints: { global: global_exports3 }
|
|
47683
|
+
breakpoints: { global: global_exports3 },
|
|
47684
|
+
typography: { global: global_exports4 }
|
|
47507
47685
|
},
|
|
47508
47686
|
js: {
|
|
47509
47687
|
global: { hex: hex_exports7, hsl: hsl_exports7, oklch: oklch_exports7, rgb: rgb_exports7 },
|
|
@@ -47514,9 +47692,10 @@ var tokens = {
|
|
|
47514
47692
|
"fuchsia-orange": { hex: hex_exports11, hsl: hsl_exports11, oklch: oklch_exports11, rgb: rgb_exports11 },
|
|
47515
47693
|
"data-visualisation": { hex: hex_exports12, hsl: hsl_exports12, oklch: oklch_exports12, rgb: rgb_exports12 }
|
|
47516
47694
|
},
|
|
47517
|
-
space: { global:
|
|
47518
|
-
radius: { global:
|
|
47519
|
-
breakpoints: { global:
|
|
47695
|
+
space: { global: global_exports5 },
|
|
47696
|
+
radius: { global: global_exports6 },
|
|
47697
|
+
breakpoints: { global: global_exports7 },
|
|
47698
|
+
typography: { global: global_exports8 }
|
|
47520
47699
|
},
|
|
47521
47700
|
json: {
|
|
47522
47701
|
global: { hex: globalJsonHex, hsl: globalJsonHsl, oklch: globalJsonOklch, rgb: globalJsonRgb },
|
|
@@ -47529,7 +47708,8 @@ var tokens = {
|
|
|
47529
47708
|
},
|
|
47530
47709
|
space: { global: spaceJsonGlobal },
|
|
47531
47710
|
radius: { global: radiusJsonGlobal },
|
|
47532
|
-
breakpoints: { global: breakpointsJsonGlobal }
|
|
47711
|
+
breakpoints: { global: breakpointsJsonGlobal },
|
|
47712
|
+
typography: { global: typographyJsonGlobal }
|
|
47533
47713
|
},
|
|
47534
47714
|
less: {
|
|
47535
47715
|
global: { hex: hex_exports13, hsl: hsl_exports13, oklch: oklch_exports13, rgb: rgb_exports13 },
|
|
@@ -47540,9 +47720,10 @@ var tokens = {
|
|
|
47540
47720
|
"fuchsia-orange": { hex: hex_exports17, hsl: hsl_exports17, oklch: oklch_exports17, rgb: rgb_exports17 },
|
|
47541
47721
|
"data-visualisation": { hex: hex_exports18, hsl: hsl_exports18, oklch: oklch_exports18, rgb: rgb_exports18 }
|
|
47542
47722
|
},
|
|
47543
|
-
space: { global:
|
|
47544
|
-
radius: { global:
|
|
47545
|
-
breakpoints: { global:
|
|
47723
|
+
space: { global: global_exports9 },
|
|
47724
|
+
radius: { global: global_exports10 },
|
|
47725
|
+
breakpoints: { global: global_exports11 },
|
|
47726
|
+
typography: { global: global_exports12 }
|
|
47546
47727
|
},
|
|
47547
47728
|
scss: {
|
|
47548
47729
|
global: { hex: hex_exports19, hsl: hsl_exports19, oklch: oklch_exports19, rgb: rgb_exports19 },
|
|
@@ -47553,9 +47734,10 @@ var tokens = {
|
|
|
47553
47734
|
"fuchsia-orange": { hex: hex_exports23, hsl: hsl_exports23, oklch: oklch_exports23, rgb: rgb_exports23 },
|
|
47554
47735
|
"data-visualisation": { hex: hex_exports24, hsl: hsl_exports24, oklch: oklch_exports24, rgb: rgb_exports24 }
|
|
47555
47736
|
},
|
|
47556
|
-
space: { global:
|
|
47557
|
-
radius: { global:
|
|
47558
|
-
breakpoints: { global:
|
|
47737
|
+
space: { global: global_exports13 },
|
|
47738
|
+
radius: { global: global_exports14 },
|
|
47739
|
+
breakpoints: { global: global_exports15 },
|
|
47740
|
+
typography: { global: global_exports16 }
|
|
47559
47741
|
},
|
|
47560
47742
|
tailwind: {
|
|
47561
47743
|
global: { hex: hex_exports25, hsl: hsl_exports25, oklch: oklch_exports25, rgb: rgb_exports25 },
|
|
@@ -47566,9 +47748,10 @@ var tokens = {
|
|
|
47566
47748
|
"fuchsia-orange": { hex: hex_exports29, hsl: hsl_exports29, oklch: oklch_exports29, rgb: rgb_exports29 },
|
|
47567
47749
|
"data-visualisation": { hex: hex_exports30, hsl: hsl_exports30, oklch: oklch_exports30, rgb: rgb_exports30 }
|
|
47568
47750
|
},
|
|
47569
|
-
space: { global:
|
|
47570
|
-
radius: { global:
|
|
47571
|
-
breakpoints: { global:
|
|
47751
|
+
space: { global: global_exports17 },
|
|
47752
|
+
radius: { global: global_exports18 },
|
|
47753
|
+
breakpoints: { global: global_exports19 },
|
|
47754
|
+
typography: { global: global_exports20 }
|
|
47572
47755
|
},
|
|
47573
47756
|
ts: {
|
|
47574
47757
|
global: { hex: hex_exports31, hsl: hsl_exports31, oklch: oklch_exports31, rgb: rgb_exports31 },
|
|
@@ -47579,9 +47762,10 @@ var tokens = {
|
|
|
47579
47762
|
"fuchsia-orange": { hex: hex_exports35, hsl: hsl_exports35, oklch: oklch_exports35, rgb: rgb_exports35 },
|
|
47580
47763
|
"data-visualisation": { hex: hex_exports36, hsl: hsl_exports36, oklch: oklch_exports36, rgb: rgb_exports36 }
|
|
47581
47764
|
},
|
|
47582
|
-
space: { global:
|
|
47583
|
-
radius: { global:
|
|
47584
|
-
breakpoints: { global:
|
|
47765
|
+
space: { global: global_exports21 },
|
|
47766
|
+
radius: { global: global_exports22 },
|
|
47767
|
+
breakpoints: { global: global_exports23 },
|
|
47768
|
+
typography: { global: global_exports24 }
|
|
47585
47769
|
}
|
|
47586
47770
|
};
|
|
47587
47771
|
var colorTokens = tokens.colors;
|