@ripperdoc-chrome77/tokens 1.0.0-beta

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/index.cjs ADDED
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ motion: () => motion,
24
+ radii: () => radii,
25
+ spacing: () => spacing,
26
+ typography: () => typography
27
+ });
28
+ module.exports = __toCommonJS(index_exports);
29
+ var spacing = {
30
+ 1: "4px",
31
+ 2: "8px",
32
+ 3: "12px",
33
+ 4: "16px",
34
+ 5: "20px",
35
+ 6: "24px",
36
+ 8: "32px",
37
+ 10: "40px",
38
+ 12: "48px",
39
+ 16: "64px"
40
+ };
41
+ var radii = {
42
+ sm: "4px",
43
+ default: "8px",
44
+ md: "12px",
45
+ lg: "16px",
46
+ xl: "24px",
47
+ full: "9999px"
48
+ };
49
+ var motion = {
50
+ fast: "150ms",
51
+ normal: "250ms",
52
+ slow: "400ms",
53
+ easeStandard: "cubic-bezier(0.4, 0, 0.2, 1)",
54
+ easeDecelerate: "cubic-bezier(0, 0, 0.2, 1)",
55
+ easeAccelerate: "cubic-bezier(0.4, 0, 1, 1)"
56
+ };
57
+ var typography = {
58
+ displayHero: { size: "48px", lineHeight: "56px", weight: "700", letterSpacing: "-0.03em" },
59
+ headlineXl: { size: "40px", lineHeight: "48px", weight: "700", letterSpacing: "-0.025em" },
60
+ headlineLg: { size: "28px", lineHeight: "36px", weight: "700", letterSpacing: "-0.02em" },
61
+ headlineMd: { size: "22px", lineHeight: "28px", weight: "600", letterSpacing: "-0.015em" },
62
+ headlineSm: { size: "18px", lineHeight: "24px", weight: "600", letterSpacing: "-0.01em" },
63
+ titleMd: { size: "16px", lineHeight: "22px", weight: "600", letterSpacing: "-0.005em" },
64
+ bodyLg: { size: "18px", lineHeight: "28px", weight: "400", letterSpacing: "0" },
65
+ bodyMd: { size: "16px", lineHeight: "24px", weight: "400", letterSpacing: "0" },
66
+ bodySm: { size: "14px", lineHeight: "20px", weight: "400", letterSpacing: "0" },
67
+ labelLg: { size: "14px", lineHeight: "18px", weight: "600", letterSpacing: "0.01em" },
68
+ labelMd: { size: "12px", lineHeight: "16px", weight: "600", letterSpacing: "0.02em" },
69
+ labelSm: { size: "11px", lineHeight: "14px", weight: "700", letterSpacing: "0.06em" }
70
+ };
71
+ // Annotate the CommonJS export names for ESM import in node:
72
+ 0 && (module.exports = {
73
+ motion,
74
+ radii,
75
+ spacing,
76
+ typography
77
+ });
78
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export const spacing = {\n 1: '4px',\n 2: '8px',\n 3: '12px',\n 4: '16px',\n 5: '20px',\n 6: '24px',\n 8: '32px',\n 10: '40px',\n 12: '48px',\n 16: '64px',\n} as const;\n\nexport type SpacingScale = keyof typeof spacing;\n\nexport const radii = {\n sm: '4px',\n default: '8px',\n md: '12px',\n lg: '16px',\n xl: '24px',\n full: '9999px',\n} as const;\n\nexport type RadiiScale = keyof typeof radii;\n\nexport const motion = {\n fast: '150ms',\n normal: '250ms',\n slow: '400ms',\n easeStandard: 'cubic-bezier(0.4, 0, 0.2, 1)',\n easeDecelerate: 'cubic-bezier(0, 0, 0.2, 1)',\n easeAccelerate: 'cubic-bezier(0.4, 0, 1, 1)',\n} as const;\n\nexport const typography = {\n displayHero: { size: '48px', lineHeight: '56px', weight: '700', letterSpacing: '-0.03em' },\n headlineXl: { size: '40px', lineHeight: '48px', weight: '700', letterSpacing: '-0.025em' },\n headlineLg: { size: '28px', lineHeight: '36px', weight: '700', letterSpacing: '-0.02em' },\n headlineMd: { size: '22px', lineHeight: '28px', weight: '600', letterSpacing: '-0.015em' },\n headlineSm: { size: '18px', lineHeight: '24px', weight: '600', letterSpacing: '-0.01em' },\n titleMd: { size: '16px', lineHeight: '22px', weight: '600', letterSpacing: '-0.005em' },\n bodyLg: { size: '18px', lineHeight: '28px', weight: '400', letterSpacing: '0' },\n bodyMd: { size: '16px', lineHeight: '24px', weight: '400', letterSpacing: '0' },\n bodySm: { size: '14px', lineHeight: '20px', weight: '400', letterSpacing: '0' },\n labelLg: { size: '14px', lineHeight: '18px', weight: '600', letterSpacing: '0.01em' },\n labelMd: { size: '12px', lineHeight: '16px', weight: '600', letterSpacing: '0.02em' },\n labelSm: { size: '11px', lineHeight: '14px', weight: '700', letterSpacing: '0.06em' },\n} as const;\n\nexport type TypographyRole = keyof typeof typography;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAO,IAAM,UAAU;AAAA,EACrB,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,IAAI;AACN;AAIO,IAAM,QAAQ;AAAA,EACnB,IAAI;AAAA,EACJ,SAAS;AAAA,EACT,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,MAAM;AACR;AAIO,IAAM,SAAS;AAAA,EACpB,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,cAAc;AAAA,EACd,gBAAgB;AAAA,EAChB,gBAAgB;AAClB;AAEO,IAAM,aAAa;AAAA,EACxB,aAAa,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,UAAU;AAAA,EACzF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,WAAW;AAAA,EACzF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,UAAU;AAAA,EACxF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,WAAW;AAAA,EACzF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,UAAU;AAAA,EACxF,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,WAAW;AAAA,EACtF,QAAQ,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,IAAI;AAAA,EAC9E,QAAQ,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,IAAI;AAAA,EAC9E,QAAQ,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,IAAI;AAAA,EAC9E,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,SAAS;AAAA,EACpF,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,SAAS;AAAA,EACpF,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,SAAS;AACtF;","names":[]}
@@ -0,0 +1,105 @@
1
+ export declare const spacing: {
2
+ readonly 1: '4px';
3
+ readonly 2: '8px';
4
+ readonly 3: '12px';
5
+ readonly 4: '16px';
6
+ readonly 5: '20px';
7
+ readonly 6: '24px';
8
+ readonly 8: '32px';
9
+ readonly 10: '40px';
10
+ readonly 12: '48px';
11
+ readonly 16: '64px';
12
+ };
13
+ export type SpacingScale = keyof typeof spacing;
14
+ export declare const radii: {
15
+ readonly sm: '4px';
16
+ readonly default: '8px';
17
+ readonly md: '12px';
18
+ readonly lg: '16px';
19
+ readonly xl: '24px';
20
+ readonly full: '9999px';
21
+ };
22
+ export type RadiiScale = keyof typeof radii;
23
+ export declare const motion: {
24
+ readonly fast: '150ms';
25
+ readonly normal: '250ms';
26
+ readonly slow: '400ms';
27
+ readonly easeStandard: 'cubic-bezier(0.4, 0, 0.2, 1)';
28
+ readonly easeDecelerate: 'cubic-bezier(0, 0, 0.2, 1)';
29
+ readonly easeAccelerate: 'cubic-bezier(0.4, 0, 1, 1)';
30
+ };
31
+ export declare const typography: {
32
+ readonly displayHero: {
33
+ readonly size: '48px';
34
+ readonly lineHeight: '56px';
35
+ readonly weight: '700';
36
+ readonly letterSpacing: '-0.03em';
37
+ };
38
+ readonly headlineXl: {
39
+ readonly size: '40px';
40
+ readonly lineHeight: '48px';
41
+ readonly weight: '700';
42
+ readonly letterSpacing: '-0.025em';
43
+ };
44
+ readonly headlineLg: {
45
+ readonly size: '28px';
46
+ readonly lineHeight: '36px';
47
+ readonly weight: '700';
48
+ readonly letterSpacing: '-0.02em';
49
+ };
50
+ readonly headlineMd: {
51
+ readonly size: '22px';
52
+ readonly lineHeight: '28px';
53
+ readonly weight: '600';
54
+ readonly letterSpacing: '-0.015em';
55
+ };
56
+ readonly headlineSm: {
57
+ readonly size: '18px';
58
+ readonly lineHeight: '24px';
59
+ readonly weight: '600';
60
+ readonly letterSpacing: '-0.01em';
61
+ };
62
+ readonly titleMd: {
63
+ readonly size: '16px';
64
+ readonly lineHeight: '22px';
65
+ readonly weight: '600';
66
+ readonly letterSpacing: '-0.005em';
67
+ };
68
+ readonly bodyLg: {
69
+ readonly size: '18px';
70
+ readonly lineHeight: '28px';
71
+ readonly weight: '400';
72
+ readonly letterSpacing: '0';
73
+ };
74
+ readonly bodyMd: {
75
+ readonly size: '16px';
76
+ readonly lineHeight: '24px';
77
+ readonly weight: '400';
78
+ readonly letterSpacing: '0';
79
+ };
80
+ readonly bodySm: {
81
+ readonly size: '14px';
82
+ readonly lineHeight: '20px';
83
+ readonly weight: '400';
84
+ readonly letterSpacing: '0';
85
+ };
86
+ readonly labelLg: {
87
+ readonly size: '14px';
88
+ readonly lineHeight: '18px';
89
+ readonly weight: '600';
90
+ readonly letterSpacing: '0.01em';
91
+ };
92
+ readonly labelMd: {
93
+ readonly size: '12px';
94
+ readonly lineHeight: '16px';
95
+ readonly weight: '600';
96
+ readonly letterSpacing: '0.02em';
97
+ };
98
+ readonly labelSm: {
99
+ readonly size: '11px';
100
+ readonly lineHeight: '14px';
101
+ readonly weight: '700';
102
+ readonly letterSpacing: '0.06em';
103
+ };
104
+ };
105
+ export type TypographyRole = keyof typeof typography;
package/dist/index.js ADDED
@@ -0,0 +1,50 @@
1
+ // src/index.ts
2
+ var spacing = {
3
+ 1: "4px",
4
+ 2: "8px",
5
+ 3: "12px",
6
+ 4: "16px",
7
+ 5: "20px",
8
+ 6: "24px",
9
+ 8: "32px",
10
+ 10: "40px",
11
+ 12: "48px",
12
+ 16: "64px"
13
+ };
14
+ var radii = {
15
+ sm: "4px",
16
+ default: "8px",
17
+ md: "12px",
18
+ lg: "16px",
19
+ xl: "24px",
20
+ full: "9999px"
21
+ };
22
+ var motion = {
23
+ fast: "150ms",
24
+ normal: "250ms",
25
+ slow: "400ms",
26
+ easeStandard: "cubic-bezier(0.4, 0, 0.2, 1)",
27
+ easeDecelerate: "cubic-bezier(0, 0, 0.2, 1)",
28
+ easeAccelerate: "cubic-bezier(0.4, 0, 1, 1)"
29
+ };
30
+ var typography = {
31
+ displayHero: { size: "48px", lineHeight: "56px", weight: "700", letterSpacing: "-0.03em" },
32
+ headlineXl: { size: "40px", lineHeight: "48px", weight: "700", letterSpacing: "-0.025em" },
33
+ headlineLg: { size: "28px", lineHeight: "36px", weight: "700", letterSpacing: "-0.02em" },
34
+ headlineMd: { size: "22px", lineHeight: "28px", weight: "600", letterSpacing: "-0.015em" },
35
+ headlineSm: { size: "18px", lineHeight: "24px", weight: "600", letterSpacing: "-0.01em" },
36
+ titleMd: { size: "16px", lineHeight: "22px", weight: "600", letterSpacing: "-0.005em" },
37
+ bodyLg: { size: "18px", lineHeight: "28px", weight: "400", letterSpacing: "0" },
38
+ bodyMd: { size: "16px", lineHeight: "24px", weight: "400", letterSpacing: "0" },
39
+ bodySm: { size: "14px", lineHeight: "20px", weight: "400", letterSpacing: "0" },
40
+ labelLg: { size: "14px", lineHeight: "18px", weight: "600", letterSpacing: "0.01em" },
41
+ labelMd: { size: "12px", lineHeight: "16px", weight: "600", letterSpacing: "0.02em" },
42
+ labelSm: { size: "11px", lineHeight: "14px", weight: "700", letterSpacing: "0.06em" }
43
+ };
44
+ export {
45
+ motion,
46
+ radii,
47
+ spacing,
48
+ typography
49
+ };
50
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export const spacing = {\n 1: '4px',\n 2: '8px',\n 3: '12px',\n 4: '16px',\n 5: '20px',\n 6: '24px',\n 8: '32px',\n 10: '40px',\n 12: '48px',\n 16: '64px',\n} as const;\n\nexport type SpacingScale = keyof typeof spacing;\n\nexport const radii = {\n sm: '4px',\n default: '8px',\n md: '12px',\n lg: '16px',\n xl: '24px',\n full: '9999px',\n} as const;\n\nexport type RadiiScale = keyof typeof radii;\n\nexport const motion = {\n fast: '150ms',\n normal: '250ms',\n slow: '400ms',\n easeStandard: 'cubic-bezier(0.4, 0, 0.2, 1)',\n easeDecelerate: 'cubic-bezier(0, 0, 0.2, 1)',\n easeAccelerate: 'cubic-bezier(0.4, 0, 1, 1)',\n} as const;\n\nexport const typography = {\n displayHero: { size: '48px', lineHeight: '56px', weight: '700', letterSpacing: '-0.03em' },\n headlineXl: { size: '40px', lineHeight: '48px', weight: '700', letterSpacing: '-0.025em' },\n headlineLg: { size: '28px', lineHeight: '36px', weight: '700', letterSpacing: '-0.02em' },\n headlineMd: { size: '22px', lineHeight: '28px', weight: '600', letterSpacing: '-0.015em' },\n headlineSm: { size: '18px', lineHeight: '24px', weight: '600', letterSpacing: '-0.01em' },\n titleMd: { size: '16px', lineHeight: '22px', weight: '600', letterSpacing: '-0.005em' },\n bodyLg: { size: '18px', lineHeight: '28px', weight: '400', letterSpacing: '0' },\n bodyMd: { size: '16px', lineHeight: '24px', weight: '400', letterSpacing: '0' },\n bodySm: { size: '14px', lineHeight: '20px', weight: '400', letterSpacing: '0' },\n labelLg: { size: '14px', lineHeight: '18px', weight: '600', letterSpacing: '0.01em' },\n labelMd: { size: '12px', lineHeight: '16px', weight: '600', letterSpacing: '0.02em' },\n labelSm: { size: '11px', lineHeight: '14px', weight: '700', letterSpacing: '0.06em' },\n} as const;\n\nexport type TypographyRole = keyof typeof typography;\n"],"mappings":";AAAO,IAAM,UAAU;AAAA,EACrB,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,IAAI;AACN;AAIO,IAAM,QAAQ;AAAA,EACnB,IAAI;AAAA,EACJ,SAAS;AAAA,EACT,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,MAAM;AACR;AAIO,IAAM,SAAS;AAAA,EACpB,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,cAAc;AAAA,EACd,gBAAgB;AAAA,EAChB,gBAAgB;AAClB;AAEO,IAAM,aAAa;AAAA,EACxB,aAAa,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,UAAU;AAAA,EACzF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,WAAW;AAAA,EACzF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,UAAU;AAAA,EACxF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,WAAW;AAAA,EACzF,YAAY,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,UAAU;AAAA,EACxF,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,WAAW;AAAA,EACtF,QAAQ,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,IAAI;AAAA,EAC9E,QAAQ,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,IAAI;AAAA,EAC9E,QAAQ,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,IAAI;AAAA,EAC9E,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,SAAS;AAAA,EACpF,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,SAAS;AAAA,EACpF,SAAS,EAAE,MAAM,QAAQ,YAAY,QAAQ,QAAQ,OAAO,eAAe,SAAS;AACtF;","names":[]}
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@ripperdoc-chrome77/tokens",
3
+ "version": "1.0.0-beta",
4
+ "description": "Design tokens and shared foundations for Ripperdoc design system",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./foundations.css": "./src/foundations.css"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "src/foundations.css",
20
+ "README.md"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "dev": "tsup --watch",
27
+ "build": "tsup && tsc --emitDeclarationOnly",
28
+ "typecheck": "tsc --noEmit"
29
+ }
30
+ }
@@ -0,0 +1,143 @@
1
+ /**
2
+ * Ripperdoc Shared Foundations
3
+ * Global token contract shared across all themes (Obsidian, Luminous, etc.)
4
+ */
5
+ :root {
6
+ /* Font Families */
7
+ --rd-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
8
+ --rd-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
9
+
10
+ /* Spacing Scale (4px Baseline) */
11
+ --rd-space-1: 4px;
12
+ --rd-space-2: 8px;
13
+ --rd-space-3: 12px;
14
+ --rd-space-4: 16px;
15
+ --rd-space-5: 20px;
16
+ --rd-space-6: 24px;
17
+ --rd-space-8: 32px;
18
+ --rd-space-10: 40px;
19
+ --rd-space-12: 48px;
20
+ --rd-space-16: 64px;
21
+
22
+ /* Radius Scale */
23
+ --rd-radius-sm: 4px;
24
+ --rd-radius-default: 8px;
25
+ --rd-radius-md: 12px;
26
+ --rd-radius-lg: 16px;
27
+ --rd-radius-xl: 24px;
28
+ --rd-radius-full: 9999px;
29
+
30
+ /* Motion & Durations */
31
+ --rd-duration-fast: 150ms;
32
+ --rd-duration-normal: 250ms;
33
+ --rd-duration-slow: 400ms;
34
+ --rd-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
35
+ --rd-ease-decelerate: cubic-bezier(0, 0, 0.2, 1);
36
+ --rd-ease-accelerate: cubic-bezier(0.4, 0, 1, 1);
37
+
38
+ /* Layout Constraints */
39
+ --rd-container-max-width: 1440px;
40
+ --rd-container-margin-mobile: 16px;
41
+ --rd-container-margin-desktop: 48px;
42
+ --rd-gutter: 16px;
43
+ }
44
+
45
+ /* Tabular figures for runtimes, timers, episode numbers */
46
+ .rd-tabular-nums {
47
+ font-variant-numeric: tabular-nums;
48
+ }
49
+
50
+ /* Typography Utility Classes */
51
+ .rd-display-hero {
52
+ font-family: var(--rd-font-sans);
53
+ font-size: 48px;
54
+ line-height: 56px;
55
+ font-weight: 700;
56
+ letter-spacing: -0.03em;
57
+ }
58
+
59
+ .rd-headline-xl {
60
+ font-family: var(--rd-font-sans);
61
+ font-size: 40px;
62
+ line-height: 48px;
63
+ font-weight: 700;
64
+ letter-spacing: -0.025em;
65
+ }
66
+
67
+ .rd-headline-lg {
68
+ font-family: var(--rd-font-sans);
69
+ font-size: 28px;
70
+ line-height: 36px;
71
+ font-weight: 700;
72
+ letter-spacing: -0.02em;
73
+ }
74
+
75
+ .rd-headline-md {
76
+ font-family: var(--rd-font-sans);
77
+ font-size: 22px;
78
+ line-height: 28px;
79
+ font-weight: 600;
80
+ letter-spacing: -0.015em;
81
+ }
82
+
83
+ .rd-headline-sm {
84
+ font-family: var(--rd-font-sans);
85
+ font-size: 18px;
86
+ line-height: 24px;
87
+ font-weight: 600;
88
+ letter-spacing: -0.01em;
89
+ }
90
+
91
+ .rd-title-md {
92
+ font-family: var(--rd-font-sans);
93
+ font-size: 16px;
94
+ line-height: 22px;
95
+ font-weight: 600;
96
+ letter-spacing: -0.005em;
97
+ }
98
+
99
+ .rd-body-lg {
100
+ font-family: var(--rd-font-sans);
101
+ font-size: 18px;
102
+ line-height: 28px;
103
+ font-weight: 400;
104
+ }
105
+
106
+ .rd-body-md {
107
+ font-family: var(--rd-font-sans);
108
+ font-size: 16px;
109
+ line-height: 24px;
110
+ font-weight: 400;
111
+ }
112
+
113
+ .rd-body-sm {
114
+ font-family: var(--rd-font-sans);
115
+ font-size: 14px;
116
+ line-height: 20px;
117
+ font-weight: 400;
118
+ }
119
+
120
+ .rd-label-lg {
121
+ font-family: var(--rd-font-sans);
122
+ font-size: 14px;
123
+ line-height: 18px;
124
+ font-weight: 600;
125
+ letter-spacing: 0.01em;
126
+ }
127
+
128
+ .rd-label-md {
129
+ font-family: var(--rd-font-sans);
130
+ font-size: 12px;
131
+ line-height: 16px;
132
+ font-weight: 600;
133
+ letter-spacing: 0.02em;
134
+ }
135
+
136
+ .rd-label-sm {
137
+ font-family: var(--rd-font-sans);
138
+ font-size: 11px;
139
+ line-height: 14px;
140
+ font-weight: 700;
141
+ letter-spacing: 0.06em;
142
+ text-transform: uppercase;
143
+ }