@nswds/tokens 3.2.0 → 3.3.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 +1 -0
- package/dist/css/typography/semantic.css +56 -0
- package/dist/index.cjs +263 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +211 -0
- package/dist/index.d.ts +211 -0
- package/dist/index.js +263 -13
- package/dist/index.js.map +1 -1
- package/dist/js/typography/global.js +1 -0
- package/dist/js/typography/semantic.js +72 -0
- package/dist/json/typography/global.json +2 -1
- package/dist/json/typography/semantic.json +65 -0
- package/dist/less/typography/global.less +1 -0
- package/dist/less/typography/semantic.less +45 -0
- package/dist/scss/typography/global.scss +1 -0
- package/dist/scss/typography/semantic.scss +45 -0
- package/dist/tailwind/typography/global.css +1 -0
- package/dist/tokens/global/typography/canonical.json +5 -0
- package/dist/tokens/semantic/typography/canonical.json +103 -0
- package/dist/tokens/typography.base.json +5 -0
- package/dist/ts/typography/global.ts +1 -0
- package/dist/ts/typography/semantic.ts +72 -0
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
--font-weight-medium: 500; /** Medium (500) — subtle emphasis, labels, and navigation. */
|
|
21
21
|
--font-weight-semibold: 600; /** Semibold (600) — headings and strong emphasis. */
|
|
22
22
|
--font-weight-bold: 700; /** Bold (700) — highest emphasis; key figures and primary headings. */
|
|
23
|
+
--font-weight-extrabold: 800; /** Extrabold (800) — hero/display headings (the prose scale uses 800 for h1). */
|
|
23
24
|
--line-height-none: 1; /** Solid (1) — display headings set at their own size (48/48, 56/56, 64/64 in the prose scale). */
|
|
24
25
|
--line-height-tight: 1.2; /** Tight (1.2) — large headings (36/30 in the prose scale). */
|
|
25
26
|
--line-height-snug: 1.3333333; /** Snug (1.3333333) — mid-size headings (32/24, 40/30 in the prose scale). */
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--typography-heading-1-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
3
|
+
--typography-heading-1-font-size: 2.25rem;
|
|
4
|
+
--typography-heading-1-font-weight: 800;
|
|
5
|
+
--typography-heading-1-line-height: 1.2;
|
|
6
|
+
--typography-heading-1-letter-spacing: -0.0125em;
|
|
7
|
+
--typography-heading-1: 800 2.25rem/1.2 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
8
|
+
--typography-heading-2-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
9
|
+
--typography-heading-2-font-size: 1.5rem;
|
|
10
|
+
--typography-heading-2-font-weight: 700;
|
|
11
|
+
--typography-heading-2-line-height: 1.3333333;
|
|
12
|
+
--typography-heading-2-letter-spacing: 0em;
|
|
13
|
+
--typography-heading-2: 700 1.5rem/1.3333333 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
14
|
+
--typography-heading-3-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
15
|
+
--typography-heading-3-font-size: 1.25rem;
|
|
16
|
+
--typography-heading-3-font-weight: 600;
|
|
17
|
+
--typography-heading-3-line-height: 1.6;
|
|
18
|
+
--typography-heading-3-letter-spacing: 0em;
|
|
19
|
+
--typography-heading-3: 600 1.25rem/1.6 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
20
|
+
--typography-heading-4-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
21
|
+
--typography-heading-4-font-size: 1rem;
|
|
22
|
+
--typography-heading-4-font-weight: 600;
|
|
23
|
+
--typography-heading-4-line-height: 1.5;
|
|
24
|
+
--typography-heading-4-letter-spacing: 0em;
|
|
25
|
+
--typography-heading-4: 600 1rem/1.5 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
26
|
+
--typography-body-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
27
|
+
--typography-body-font-size: 1rem;
|
|
28
|
+
--typography-body-font-weight: 400;
|
|
29
|
+
--typography-body-line-height: 1.75;
|
|
30
|
+
--typography-body-letter-spacing: 0em;
|
|
31
|
+
--typography-body: 400 1rem/1.75 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
32
|
+
--typography-body-sm-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
33
|
+
--typography-body-sm-font-size: 0.875rem;
|
|
34
|
+
--typography-body-sm-font-weight: 400;
|
|
35
|
+
--typography-body-sm-line-height: 1.75;
|
|
36
|
+
--typography-body-sm-letter-spacing: 0em;
|
|
37
|
+
--typography-body-sm: 400 0.875rem/1.75 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
38
|
+
--typography-lead-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
39
|
+
--typography-lead-font-size: 1.25rem;
|
|
40
|
+
--typography-lead-font-weight: 400;
|
|
41
|
+
--typography-lead-line-height: 1.6;
|
|
42
|
+
--typography-lead-letter-spacing: 0em;
|
|
43
|
+
--typography-lead: 400 1.25rem/1.6 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
44
|
+
--typography-caption-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
45
|
+
--typography-caption-font-size: 0.75rem;
|
|
46
|
+
--typography-caption-font-weight: 400;
|
|
47
|
+
--typography-caption-line-height: 1.5;
|
|
48
|
+
--typography-caption-letter-spacing: 0.025em;
|
|
49
|
+
--typography-caption: 400 0.75rem/1.5 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
50
|
+
--typography-code-font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
|
|
51
|
+
--typography-code-font-size: 0.875rem;
|
|
52
|
+
--typography-code-font-weight: 400;
|
|
53
|
+
--typography-code-line-height: 1.5;
|
|
54
|
+
--typography-code-letter-spacing: 0em;
|
|
55
|
+
--typography-code: 400 0.875rem/1.5 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
|
|
56
|
+
}
|
package/dist/index.cjs
CHANGED
|
@@ -39028,7 +39028,8 @@ var require_global4 = __commonJS({
|
|
|
39028
39028
|
"font-weight-regular": 400,
|
|
39029
39029
|
"font-weight-medium": 500,
|
|
39030
39030
|
"font-weight-semibold": 600,
|
|
39031
|
-
"font-weight-bold": 700
|
|
39031
|
+
"font-weight-bold": 700,
|
|
39032
|
+
"font-weight-extrabold": 800
|
|
39032
39033
|
},
|
|
39033
39034
|
"line-height": {
|
|
39034
39035
|
"line-height-none": 1,
|
|
@@ -39047,6 +39048,77 @@ var require_global4 = __commonJS({
|
|
|
39047
39048
|
}
|
|
39048
39049
|
});
|
|
39049
39050
|
|
|
39051
|
+
// src/json/typography/semantic.json
|
|
39052
|
+
var require_semantic = __commonJS({
|
|
39053
|
+
"src/json/typography/semantic.json"(exports$1, module) {
|
|
39054
|
+
module.exports = {
|
|
39055
|
+
"heading-1": {
|
|
39056
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39057
|
+
fontSize: "2.25rem",
|
|
39058
|
+
fontWeight: 800,
|
|
39059
|
+
lineHeight: 1.2,
|
|
39060
|
+
letterSpacing: "-0.0125em"
|
|
39061
|
+
},
|
|
39062
|
+
"heading-2": {
|
|
39063
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39064
|
+
fontSize: "1.5rem",
|
|
39065
|
+
fontWeight: 700,
|
|
39066
|
+
lineHeight: 1.3333333,
|
|
39067
|
+
letterSpacing: "0em"
|
|
39068
|
+
},
|
|
39069
|
+
"heading-3": {
|
|
39070
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39071
|
+
fontSize: "1.25rem",
|
|
39072
|
+
fontWeight: 600,
|
|
39073
|
+
lineHeight: 1.6,
|
|
39074
|
+
letterSpacing: "0em"
|
|
39075
|
+
},
|
|
39076
|
+
"heading-4": {
|
|
39077
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39078
|
+
fontSize: "1rem",
|
|
39079
|
+
fontWeight: 600,
|
|
39080
|
+
lineHeight: 1.5,
|
|
39081
|
+
letterSpacing: "0em"
|
|
39082
|
+
},
|
|
39083
|
+
body: {
|
|
39084
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39085
|
+
fontSize: "1rem",
|
|
39086
|
+
fontWeight: 400,
|
|
39087
|
+
lineHeight: 1.75,
|
|
39088
|
+
letterSpacing: "0em"
|
|
39089
|
+
},
|
|
39090
|
+
"body-sm": {
|
|
39091
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39092
|
+
fontSize: "0.875rem",
|
|
39093
|
+
fontWeight: 400,
|
|
39094
|
+
lineHeight: 1.75,
|
|
39095
|
+
letterSpacing: "0em"
|
|
39096
|
+
},
|
|
39097
|
+
lead: {
|
|
39098
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39099
|
+
fontSize: "1.25rem",
|
|
39100
|
+
fontWeight: 400,
|
|
39101
|
+
lineHeight: 1.6,
|
|
39102
|
+
letterSpacing: "0em"
|
|
39103
|
+
},
|
|
39104
|
+
caption: {
|
|
39105
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
39106
|
+
fontSize: "0.75rem",
|
|
39107
|
+
fontWeight: 400,
|
|
39108
|
+
lineHeight: 1.5,
|
|
39109
|
+
letterSpacing: "0.025em"
|
|
39110
|
+
},
|
|
39111
|
+
code: {
|
|
39112
|
+
fontFamily: "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace",
|
|
39113
|
+
fontSize: "0.875rem",
|
|
39114
|
+
fontWeight: 400,
|
|
39115
|
+
lineHeight: 1.5,
|
|
39116
|
+
letterSpacing: "0em"
|
|
39117
|
+
}
|
|
39118
|
+
};
|
|
39119
|
+
}
|
|
39120
|
+
});
|
|
39121
|
+
|
|
39050
39122
|
// src/css/colors/global/hex.css
|
|
39051
39123
|
var hex_exports = {};
|
|
39052
39124
|
__export(hex_exports, {
|
|
@@ -39241,7 +39313,14 @@ var global_exports4 = {};
|
|
|
39241
39313
|
__export(global_exports4, {
|
|
39242
39314
|
default: () => global_default4
|
|
39243
39315
|
});
|
|
39244
|
-
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";
|
|
39316
|
+
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 --font-weight-extrabold: 800; /** Extrabold (800) \u2014 hero/display headings (the prose scale uses 800 for h1). */\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";
|
|
39317
|
+
|
|
39318
|
+
// src/css/typography/semantic.css
|
|
39319
|
+
var semantic_exports = {};
|
|
39320
|
+
__export(semantic_exports, {
|
|
39321
|
+
default: () => semantic_default
|
|
39322
|
+
});
|
|
39323
|
+
var semantic_default = ":root {\n --typography-heading-1-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-heading-1-font-size: 2.25rem;\n --typography-heading-1-font-weight: 800;\n --typography-heading-1-line-height: 1.2;\n --typography-heading-1-letter-spacing: -0.0125em;\n --typography-heading-1: 800 2.25rem/1.2 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-heading-2-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-heading-2-font-size: 1.5rem;\n --typography-heading-2-font-weight: 700;\n --typography-heading-2-line-height: 1.3333333;\n --typography-heading-2-letter-spacing: 0em;\n --typography-heading-2: 700 1.5rem/1.3333333 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-heading-3-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-heading-3-font-size: 1.25rem;\n --typography-heading-3-font-weight: 600;\n --typography-heading-3-line-height: 1.6;\n --typography-heading-3-letter-spacing: 0em;\n --typography-heading-3: 600 1.25rem/1.6 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-heading-4-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-heading-4-font-size: 1rem;\n --typography-heading-4-font-weight: 600;\n --typography-heading-4-line-height: 1.5;\n --typography-heading-4-letter-spacing: 0em;\n --typography-heading-4: 600 1rem/1.5 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-body-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-body-font-size: 1rem;\n --typography-body-font-weight: 400;\n --typography-body-line-height: 1.75;\n --typography-body-letter-spacing: 0em;\n --typography-body: 400 1rem/1.75 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-body-sm-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-body-sm-font-size: 0.875rem;\n --typography-body-sm-font-weight: 400;\n --typography-body-sm-line-height: 1.75;\n --typography-body-sm-letter-spacing: 0em;\n --typography-body-sm: 400 0.875rem/1.75 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-lead-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-lead-font-size: 1.25rem;\n --typography-lead-font-weight: 400;\n --typography-lead-line-height: 1.6;\n --typography-lead-letter-spacing: 0em;\n --typography-lead: 400 1.25rem/1.6 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-caption-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-caption-font-size: 0.75rem;\n --typography-caption-font-weight: 400;\n --typography-caption-line-height: 1.5;\n --typography-caption-letter-spacing: 0.025em;\n --typography-caption: 400 0.75rem/1.5 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n --typography-code-font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;\n --typography-code-font-size: 0.875rem;\n --typography-code-font-weight: 400;\n --typography-code-line-height: 1.5;\n --typography-code-letter-spacing: 0em;\n --typography-code: 400 0.875rem/1.5 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;\n}\n";
|
|
39245
39324
|
|
|
39246
39325
|
// src/js/colors/global/hex.js
|
|
39247
39326
|
var hex_exports7 = {};
|
|
@@ -43115,7 +43194,8 @@ var fontWeight = {
|
|
|
43115
43194
|
regular: 400,
|
|
43116
43195
|
medium: 500,
|
|
43117
43196
|
semibold: 600,
|
|
43118
|
-
bold: 700
|
|
43197
|
+
bold: 700,
|
|
43198
|
+
extrabold: 800
|
|
43119
43199
|
};
|
|
43120
43200
|
var lineHeight = {
|
|
43121
43201
|
none: 1,
|
|
@@ -43131,6 +43211,83 @@ var letterSpacing = {
|
|
|
43131
43211
|
wide: "0.025em"
|
|
43132
43212
|
};
|
|
43133
43213
|
|
|
43214
|
+
// src/js/typography/semantic.js
|
|
43215
|
+
var semantic_exports2 = {};
|
|
43216
|
+
__export(semantic_exports2, {
|
|
43217
|
+
body: () => body,
|
|
43218
|
+
bodySm: () => bodySm,
|
|
43219
|
+
caption: () => caption,
|
|
43220
|
+
code: () => code,
|
|
43221
|
+
heading1: () => heading1,
|
|
43222
|
+
heading2: () => heading2,
|
|
43223
|
+
heading3: () => heading3,
|
|
43224
|
+
heading4: () => heading4,
|
|
43225
|
+
lead: () => lead
|
|
43226
|
+
});
|
|
43227
|
+
var heading1 = {
|
|
43228
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43229
|
+
fontSize: "2.25rem",
|
|
43230
|
+
fontWeight: 800,
|
|
43231
|
+
lineHeight: 1.2,
|
|
43232
|
+
letterSpacing: "-0.0125em"
|
|
43233
|
+
};
|
|
43234
|
+
var heading2 = {
|
|
43235
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43236
|
+
fontSize: "1.5rem",
|
|
43237
|
+
fontWeight: 700,
|
|
43238
|
+
lineHeight: 1.3333333,
|
|
43239
|
+
letterSpacing: "0em"
|
|
43240
|
+
};
|
|
43241
|
+
var heading3 = {
|
|
43242
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43243
|
+
fontSize: "1.25rem",
|
|
43244
|
+
fontWeight: 600,
|
|
43245
|
+
lineHeight: 1.6,
|
|
43246
|
+
letterSpacing: "0em"
|
|
43247
|
+
};
|
|
43248
|
+
var heading4 = {
|
|
43249
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43250
|
+
fontSize: "1rem",
|
|
43251
|
+
fontWeight: 600,
|
|
43252
|
+
lineHeight: 1.5,
|
|
43253
|
+
letterSpacing: "0em"
|
|
43254
|
+
};
|
|
43255
|
+
var body = {
|
|
43256
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43257
|
+
fontSize: "1rem",
|
|
43258
|
+
fontWeight: 400,
|
|
43259
|
+
lineHeight: 1.75,
|
|
43260
|
+
letterSpacing: "0em"
|
|
43261
|
+
};
|
|
43262
|
+
var bodySm = {
|
|
43263
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43264
|
+
fontSize: "0.875rem",
|
|
43265
|
+
fontWeight: 400,
|
|
43266
|
+
lineHeight: 1.75,
|
|
43267
|
+
letterSpacing: "0em"
|
|
43268
|
+
};
|
|
43269
|
+
var lead = {
|
|
43270
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43271
|
+
fontSize: "1.25rem",
|
|
43272
|
+
fontWeight: 400,
|
|
43273
|
+
lineHeight: 1.6,
|
|
43274
|
+
letterSpacing: "0em"
|
|
43275
|
+
};
|
|
43276
|
+
var caption = {
|
|
43277
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
43278
|
+
fontSize: "0.75rem",
|
|
43279
|
+
fontWeight: 400,
|
|
43280
|
+
lineHeight: 1.5,
|
|
43281
|
+
letterSpacing: "0.025em"
|
|
43282
|
+
};
|
|
43283
|
+
var code = {
|
|
43284
|
+
fontFamily: "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace",
|
|
43285
|
+
fontSize: "0.875rem",
|
|
43286
|
+
fontWeight: 400,
|
|
43287
|
+
lineHeight: 1.5,
|
|
43288
|
+
letterSpacing: "0em"
|
|
43289
|
+
};
|
|
43290
|
+
|
|
43134
43291
|
// src/less/colors/global/hex.less
|
|
43135
43292
|
var hex_exports13 = {};
|
|
43136
43293
|
__export(hex_exports13, {
|
|
@@ -43325,7 +43482,14 @@ var global_exports12 = {};
|
|
|
43325
43482
|
__export(global_exports12, {
|
|
43326
43483
|
default: () => global_default8
|
|
43327
43484
|
});
|
|
43328
|
-
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";
|
|
43485
|
+
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@font-weight-extrabold: 800; // Extrabold (800) \u2014 hero/display headings (the prose scale uses 800 for h1).\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";
|
|
43486
|
+
|
|
43487
|
+
// src/less/typography/semantic.less
|
|
43488
|
+
var semantic_exports3 = {};
|
|
43489
|
+
__export(semantic_exports3, {
|
|
43490
|
+
default: () => semantic_default2
|
|
43491
|
+
});
|
|
43492
|
+
var semantic_default2 = "@typography-heading-1-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-heading-1-font-size: 2.25rem;\n@typography-heading-1-font-weight: 800;\n@typography-heading-1-line-height: 1.2;\n@typography-heading-1-letter-spacing: -0.0125em;\n@typography-heading-2-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-heading-2-font-size: 1.5rem;\n@typography-heading-2-font-weight: 700;\n@typography-heading-2-line-height: 1.3333333;\n@typography-heading-2-letter-spacing: 0em;\n@typography-heading-3-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-heading-3-font-size: 1.25rem;\n@typography-heading-3-font-weight: 600;\n@typography-heading-3-line-height: 1.6;\n@typography-heading-3-letter-spacing: 0em;\n@typography-heading-4-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-heading-4-font-size: 1rem;\n@typography-heading-4-font-weight: 600;\n@typography-heading-4-line-height: 1.5;\n@typography-heading-4-letter-spacing: 0em;\n@typography-body-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-body-font-size: 1rem;\n@typography-body-font-weight: 400;\n@typography-body-line-height: 1.75;\n@typography-body-letter-spacing: 0em;\n@typography-body-sm-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-body-sm-font-size: 0.875rem;\n@typography-body-sm-font-weight: 400;\n@typography-body-sm-line-height: 1.75;\n@typography-body-sm-letter-spacing: 0em;\n@typography-lead-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-lead-font-size: 1.25rem;\n@typography-lead-font-weight: 400;\n@typography-lead-line-height: 1.6;\n@typography-lead-letter-spacing: 0em;\n@typography-caption-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n@typography-caption-font-size: 0.75rem;\n@typography-caption-font-weight: 400;\n@typography-caption-line-height: 1.5;\n@typography-caption-letter-spacing: 0.025em;\n@typography-code-font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;\n@typography-code-font-size: 0.875rem;\n@typography-code-font-weight: 400;\n@typography-code-line-height: 1.5;\n@typography-code-letter-spacing: 0em;\n";
|
|
43329
43493
|
|
|
43330
43494
|
// src/scss/colors/global/hex.scss
|
|
43331
43495
|
var hex_exports19 = {};
|
|
@@ -43521,7 +43685,14 @@ var global_exports16 = {};
|
|
|
43521
43685
|
__export(global_exports16, {
|
|
43522
43686
|
default: () => global_default12
|
|
43523
43687
|
});
|
|
43524
|
-
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";
|
|
43688
|
+
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$font-weight-extrabold: 800; // Extrabold (800) \u2014 hero/display headings (the prose scale uses 800 for h1).\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";
|
|
43689
|
+
|
|
43690
|
+
// src/scss/typography/semantic.scss
|
|
43691
|
+
var semantic_exports4 = {};
|
|
43692
|
+
__export(semantic_exports4, {
|
|
43693
|
+
default: () => semantic_default3
|
|
43694
|
+
});
|
|
43695
|
+
var semantic_default3 = "$typography-heading-1-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-heading-1-font-size: 2.25rem;\n$typography-heading-1-font-weight: 800;\n$typography-heading-1-line-height: 1.2;\n$typography-heading-1-letter-spacing: -0.0125em;\n$typography-heading-2-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-heading-2-font-size: 1.5rem;\n$typography-heading-2-font-weight: 700;\n$typography-heading-2-line-height: 1.3333333;\n$typography-heading-2-letter-spacing: 0em;\n$typography-heading-3-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-heading-3-font-size: 1.25rem;\n$typography-heading-3-font-weight: 600;\n$typography-heading-3-line-height: 1.6;\n$typography-heading-3-letter-spacing: 0em;\n$typography-heading-4-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-heading-4-font-size: 1rem;\n$typography-heading-4-font-weight: 600;\n$typography-heading-4-line-height: 1.5;\n$typography-heading-4-letter-spacing: 0em;\n$typography-body-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-body-font-size: 1rem;\n$typography-body-font-weight: 400;\n$typography-body-line-height: 1.75;\n$typography-body-letter-spacing: 0em;\n$typography-body-sm-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-body-sm-font-size: 0.875rem;\n$typography-body-sm-font-weight: 400;\n$typography-body-sm-line-height: 1.75;\n$typography-body-sm-letter-spacing: 0em;\n$typography-lead-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-lead-font-size: 1.25rem;\n$typography-lead-font-weight: 400;\n$typography-lead-line-height: 1.6;\n$typography-lead-letter-spacing: 0em;\n$typography-caption-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n$typography-caption-font-size: 0.75rem;\n$typography-caption-font-weight: 400;\n$typography-caption-line-height: 1.5;\n$typography-caption-letter-spacing: 0.025em;\n$typography-code-font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;\n$typography-code-font-size: 0.875rem;\n$typography-code-font-weight: 400;\n$typography-code-line-height: 1.5;\n$typography-code-letter-spacing: 0em;\n";
|
|
43525
43696
|
|
|
43526
43697
|
// src/tailwind/colors/global/hex.css
|
|
43527
43698
|
var hex_exports25 = {};
|
|
@@ -43717,7 +43888,7 @@ var global_exports20 = {};
|
|
|
43717
43888
|
__export(global_exports20, {
|
|
43718
43889
|
default: () => global_default16
|
|
43719
43890
|
});
|
|
43720
|
-
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";
|
|
43891
|
+
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 --font-weight-extrabold: 800;\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";
|
|
43721
43892
|
|
|
43722
43893
|
// src/ts/colors/global/hex.ts
|
|
43723
43894
|
var hex_exports31 = {};
|
|
@@ -47591,7 +47762,8 @@ var fontWeight2 = {
|
|
|
47591
47762
|
regular: 400,
|
|
47592
47763
|
medium: 500,
|
|
47593
47764
|
semibold: 600,
|
|
47594
|
-
bold: 700
|
|
47765
|
+
bold: 700,
|
|
47766
|
+
extrabold: 800
|
|
47595
47767
|
};
|
|
47596
47768
|
var lineHeight2 = {
|
|
47597
47769
|
none: 1,
|
|
@@ -47607,6 +47779,83 @@ var letterSpacing2 = {
|
|
|
47607
47779
|
wide: "0.025em"
|
|
47608
47780
|
};
|
|
47609
47781
|
|
|
47782
|
+
// src/ts/typography/semantic.ts
|
|
47783
|
+
var semantic_exports5 = {};
|
|
47784
|
+
__export(semantic_exports5, {
|
|
47785
|
+
body: () => body2,
|
|
47786
|
+
bodySm: () => bodySm2,
|
|
47787
|
+
caption: () => caption2,
|
|
47788
|
+
code: () => code2,
|
|
47789
|
+
heading1: () => heading12,
|
|
47790
|
+
heading2: () => heading22,
|
|
47791
|
+
heading3: () => heading32,
|
|
47792
|
+
heading4: () => heading42,
|
|
47793
|
+
lead: () => lead2
|
|
47794
|
+
});
|
|
47795
|
+
var heading12 = {
|
|
47796
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47797
|
+
fontSize: "2.25rem",
|
|
47798
|
+
fontWeight: 800,
|
|
47799
|
+
lineHeight: 1.2,
|
|
47800
|
+
letterSpacing: "-0.0125em"
|
|
47801
|
+
};
|
|
47802
|
+
var heading22 = {
|
|
47803
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47804
|
+
fontSize: "1.5rem",
|
|
47805
|
+
fontWeight: 700,
|
|
47806
|
+
lineHeight: 1.3333333,
|
|
47807
|
+
letterSpacing: "0em"
|
|
47808
|
+
};
|
|
47809
|
+
var heading32 = {
|
|
47810
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47811
|
+
fontSize: "1.25rem",
|
|
47812
|
+
fontWeight: 600,
|
|
47813
|
+
lineHeight: 1.6,
|
|
47814
|
+
letterSpacing: "0em"
|
|
47815
|
+
};
|
|
47816
|
+
var heading42 = {
|
|
47817
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47818
|
+
fontSize: "1rem",
|
|
47819
|
+
fontWeight: 600,
|
|
47820
|
+
lineHeight: 1.5,
|
|
47821
|
+
letterSpacing: "0em"
|
|
47822
|
+
};
|
|
47823
|
+
var body2 = {
|
|
47824
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47825
|
+
fontSize: "1rem",
|
|
47826
|
+
fontWeight: 400,
|
|
47827
|
+
lineHeight: 1.75,
|
|
47828
|
+
letterSpacing: "0em"
|
|
47829
|
+
};
|
|
47830
|
+
var bodySm2 = {
|
|
47831
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47832
|
+
fontSize: "0.875rem",
|
|
47833
|
+
fontWeight: 400,
|
|
47834
|
+
lineHeight: 1.75,
|
|
47835
|
+
letterSpacing: "0em"
|
|
47836
|
+
};
|
|
47837
|
+
var lead2 = {
|
|
47838
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47839
|
+
fontSize: "1.25rem",
|
|
47840
|
+
fontWeight: 400,
|
|
47841
|
+
lineHeight: 1.6,
|
|
47842
|
+
letterSpacing: "0em"
|
|
47843
|
+
};
|
|
47844
|
+
var caption2 = {
|
|
47845
|
+
fontFamily: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
47846
|
+
fontSize: "0.75rem",
|
|
47847
|
+
fontWeight: 400,
|
|
47848
|
+
lineHeight: 1.5,
|
|
47849
|
+
letterSpacing: "0.025em"
|
|
47850
|
+
};
|
|
47851
|
+
var code2 = {
|
|
47852
|
+
fontFamily: "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace",
|
|
47853
|
+
fontSize: "0.875rem",
|
|
47854
|
+
fontWeight: 400,
|
|
47855
|
+
lineHeight: 1.5,
|
|
47856
|
+
letterSpacing: "0em"
|
|
47857
|
+
};
|
|
47858
|
+
|
|
47610
47859
|
// src/index.ts
|
|
47611
47860
|
var globalColorHex = require_hex();
|
|
47612
47861
|
var globalColorHsl = require_hsl();
|
|
@@ -47660,6 +47909,7 @@ var spaceJsonGlobal = require_global();
|
|
|
47660
47909
|
var radiusJsonGlobal = require_global2();
|
|
47661
47910
|
var breakpointsJsonGlobal = require_global3();
|
|
47662
47911
|
var typographyJsonGlobal = require_global4();
|
|
47912
|
+
var typographyJsonSemantic = require_semantic();
|
|
47663
47913
|
var tokens = {
|
|
47664
47914
|
colors: {
|
|
47665
47915
|
global: { hex: globalColorHex, hsl: globalColorHsl, oklch: globalColorOklch, rgb: globalColorRgb },
|
|
@@ -47683,7 +47933,7 @@ var tokens = {
|
|
|
47683
47933
|
space: { global: global_exports },
|
|
47684
47934
|
radius: { global: global_exports2 },
|
|
47685
47935
|
breakpoints: { global: global_exports3 },
|
|
47686
|
-
typography: { global: global_exports4 }
|
|
47936
|
+
typography: { global: global_exports4, semantic: semantic_exports }
|
|
47687
47937
|
},
|
|
47688
47938
|
js: {
|
|
47689
47939
|
global: { hex: hex_exports7, hsl: hsl_exports7, oklch: oklch_exports7, rgb: rgb_exports7 },
|
|
@@ -47697,7 +47947,7 @@ var tokens = {
|
|
|
47697
47947
|
space: { global: global_exports5 },
|
|
47698
47948
|
radius: { global: global_exports6 },
|
|
47699
47949
|
breakpoints: { global: global_exports7 },
|
|
47700
|
-
typography: { global: global_exports8 }
|
|
47950
|
+
typography: { global: global_exports8, semantic: semantic_exports2 }
|
|
47701
47951
|
},
|
|
47702
47952
|
json: {
|
|
47703
47953
|
global: { hex: globalJsonHex, hsl: globalJsonHsl, oklch: globalJsonOklch, rgb: globalJsonRgb },
|
|
@@ -47711,7 +47961,7 @@ var tokens = {
|
|
|
47711
47961
|
space: { global: spaceJsonGlobal },
|
|
47712
47962
|
radius: { global: radiusJsonGlobal },
|
|
47713
47963
|
breakpoints: { global: breakpointsJsonGlobal },
|
|
47714
|
-
typography: { global: typographyJsonGlobal }
|
|
47964
|
+
typography: { global: typographyJsonGlobal, semantic: typographyJsonSemantic }
|
|
47715
47965
|
},
|
|
47716
47966
|
less: {
|
|
47717
47967
|
global: { hex: hex_exports13, hsl: hsl_exports13, oklch: oklch_exports13, rgb: rgb_exports13 },
|
|
@@ -47725,7 +47975,7 @@ var tokens = {
|
|
|
47725
47975
|
space: { global: global_exports9 },
|
|
47726
47976
|
radius: { global: global_exports10 },
|
|
47727
47977
|
breakpoints: { global: global_exports11 },
|
|
47728
|
-
typography: { global: global_exports12 }
|
|
47978
|
+
typography: { global: global_exports12, semantic: semantic_exports3 }
|
|
47729
47979
|
},
|
|
47730
47980
|
scss: {
|
|
47731
47981
|
global: { hex: hex_exports19, hsl: hsl_exports19, oklch: oklch_exports19, rgb: rgb_exports19 },
|
|
@@ -47739,7 +47989,7 @@ var tokens = {
|
|
|
47739
47989
|
space: { global: global_exports13 },
|
|
47740
47990
|
radius: { global: global_exports14 },
|
|
47741
47991
|
breakpoints: { global: global_exports15 },
|
|
47742
|
-
typography: { global: global_exports16 }
|
|
47992
|
+
typography: { global: global_exports16, semantic: semantic_exports4 }
|
|
47743
47993
|
},
|
|
47744
47994
|
tailwind: {
|
|
47745
47995
|
global: { hex: hex_exports25, hsl: hsl_exports25, oklch: oklch_exports25, rgb: rgb_exports25 },
|
|
@@ -47767,7 +48017,7 @@ var tokens = {
|
|
|
47767
48017
|
space: { global: global_exports21 },
|
|
47768
48018
|
radius: { global: global_exports22 },
|
|
47769
48019
|
breakpoints: { global: global_exports23 },
|
|
47770
|
-
typography: { global: global_exports24 }
|
|
48020
|
+
typography: { global: global_exports24, semantic: semantic_exports5 }
|
|
47771
48021
|
}
|
|
47772
48022
|
};
|
|
47773
48023
|
var colorTokens = tokens.colors;
|