@lukeashford/aurelius 1.1.0 → 2.1.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.
@@ -1,156 +0,0 @@
1
- declare const colors: {
2
- readonly void: "#000000";
3
- readonly obsidian: "#0a0a0a";
4
- readonly charcoal: "#141414";
5
- readonly graphite: "#1f1f1f";
6
- readonly slate: "#2a2a2a";
7
- readonly ash: "#3d3d3d";
8
- readonly gold: "#c9a227";
9
- readonly goldLight: "#d4b84a";
10
- readonly goldBright: "#e5c84d";
11
- readonly goldMuted: "#8b7355";
12
- readonly goldPale: "#d4c4a8";
13
- readonly goldGlow: "rgba(201, 162, 39, 0.15)";
14
- readonly white: "#ffffff";
15
- readonly silver: "#a3a3a3";
16
- readonly zinc: "#71717a";
17
- readonly dim: "#52525b";
18
- readonly success: "#22c55e";
19
- readonly successMuted: "#166534";
20
- readonly error: "#dc2626";
21
- readonly errorMuted: "#991b1b";
22
- readonly warning: "#d97706";
23
- readonly warningMuted: "#92400e";
24
- readonly info: "#0ea5e9";
25
- readonly infoMuted: "#0369a1";
26
- };
27
- type ColorToken = keyof typeof colors;
28
-
29
- declare const typography: {
30
- readonly fontHeading: readonly ["Marcellus", "serif"];
31
- readonly fontBody: readonly ["Raleway", "system-ui", "sans-serif"];
32
- readonly fontMono: readonly ["JetBrains Mono", "Fira Code", "SF Mono", "monospace"];
33
- readonly fontSize: {
34
- readonly xs: readonly ["0.75rem", {
35
- readonly lineHeight: "1rem";
36
- }];
37
- readonly sm: readonly ["0.875rem", {
38
- readonly lineHeight: "1.25rem";
39
- }];
40
- readonly base: readonly ["1rem", {
41
- readonly lineHeight: "1.5rem";
42
- }];
43
- readonly lg: readonly ["1.125rem", {
44
- readonly lineHeight: "1.75rem";
45
- }];
46
- readonly xl: readonly ["1.25rem", {
47
- readonly lineHeight: "1.75rem";
48
- }];
49
- readonly '2xl': readonly ["1.5rem", {
50
- readonly lineHeight: "2rem";
51
- }];
52
- readonly '3xl': readonly ["1.875rem", {
53
- readonly lineHeight: "2.25rem";
54
- }];
55
- readonly '4xl': readonly ["2.25rem", {
56
- readonly lineHeight: "2.5rem";
57
- }];
58
- readonly '5xl': readonly ["3rem", {
59
- readonly lineHeight: "1";
60
- }];
61
- readonly '6xl': readonly ["3.75rem", {
62
- readonly lineHeight: "1";
63
- }];
64
- };
65
- readonly fontWeight: {
66
- readonly normal: "400";
67
- readonly medium: "500";
68
- readonly semibold: "600";
69
- readonly bold: "700";
70
- };
71
- readonly lineHeight: {
72
- readonly none: "1";
73
- readonly tight: "1.25";
74
- readonly snug: "1.375";
75
- readonly normal: "1.5";
76
- readonly relaxed: "1.625";
77
- readonly loose: "2";
78
- };
79
- readonly letterSpacing: {
80
- readonly tighter: "-0.05em";
81
- readonly tight: "-0.025em";
82
- readonly normal: "0";
83
- readonly wide: "0.025em";
84
- readonly wider: "0.05em";
85
- readonly widest: "0.1em";
86
- };
87
- };
88
- type TypographyToken = keyof typeof typography;
89
-
90
- declare const spacing: {
91
- readonly px: "1px";
92
- readonly 0: "0";
93
- readonly 0.5: "0.125rem";
94
- readonly 1: "0.25rem";
95
- readonly 1.5: "0.375rem";
96
- readonly 2: "0.5rem";
97
- readonly 2.5: "0.625rem";
98
- readonly 3: "0.75rem";
99
- readonly 3.5: "0.875rem";
100
- readonly 4: "1rem";
101
- readonly 5: "1.25rem";
102
- readonly 6: "1.5rem";
103
- readonly 7: "1.75rem";
104
- readonly 8: "2rem";
105
- readonly 9: "2.25rem";
106
- readonly 10: "2.5rem";
107
- readonly 11: "2.75rem";
108
- readonly 12: "3rem";
109
- readonly 14: "3.5rem";
110
- readonly 16: "4rem";
111
- readonly 20: "5rem";
112
- readonly 24: "6rem";
113
- readonly 28: "7rem";
114
- readonly 32: "8rem";
115
- };
116
- type SpacingToken = keyof typeof spacing;
117
-
118
- declare const shadows: {
119
- readonly sm: "0 1px 2px 0 rgba(0, 0, 0, 0.4)";
120
- readonly md: "0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3)";
121
- readonly lg: "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)";
122
- readonly xl: "0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3)";
123
- readonly '2xl': "0 25px 50px -12px rgba(0, 0, 0, 0.5)";
124
- readonly glow: "0 0 20px rgba(201, 162, 39, 0.3)";
125
- readonly 'glow-sm': "0 0 10px rgba(201, 162, 39, 0.2)";
126
- readonly 'glow-lg': "0 0 40px rgba(201, 162, 39, 0.4)";
127
- readonly inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)";
128
- };
129
- type ShadowToken = keyof typeof shadows;
130
-
131
- declare const duration: {
132
- readonly instant: "75ms";
133
- readonly fast: "150ms";
134
- readonly normal: "200ms";
135
- readonly slow: "300ms";
136
- readonly slower: "500ms";
137
- };
138
- declare const easing: {
139
- readonly smooth: "cubic-bezier(0.16, 1, 0.3, 1)";
140
- readonly snap: "cubic-bezier(0.5, 0, 0.1, 1)";
141
- };
142
- type DurationToken = keyof typeof duration;
143
- type EasingToken = keyof typeof easing;
144
-
145
- declare const radii: {
146
- readonly sm: "0.125rem";
147
- readonly md: "0.25rem";
148
- readonly lg: "0.375rem";
149
- readonly xl: "0.5rem";
150
- readonly '2xl': "0.75rem";
151
- readonly '3xl': "1rem";
152
- readonly full: "9999px";
153
- };
154
- type RadiusToken = keyof typeof radii;
155
-
156
- export { type ColorToken, type DurationToken, type EasingToken, type RadiusToken, type ShadowToken, type SpacingToken, type TypographyToken, colors, duration, easing, radii, shadows, spacing, typography };
@@ -1,182 +0,0 @@
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/tokens/index.ts
21
- var tokens_exports = {};
22
- __export(tokens_exports, {
23
- colors: () => colors,
24
- duration: () => duration,
25
- easing: () => easing,
26
- radii: () => radii,
27
- shadows: () => shadows,
28
- spacing: () => spacing,
29
- typography: () => typography
30
- });
31
- module.exports = __toCommonJS(tokens_exports);
32
-
33
- // src/tokens/colors.ts
34
- var colors = {
35
- // Black spectrum
36
- void: "#000000",
37
- obsidian: "#0a0a0a",
38
- charcoal: "#141414",
39
- graphite: "#1f1f1f",
40
- slate: "#2a2a2a",
41
- ash: "#3d3d3d",
42
- // Gold spectrum
43
- gold: "#c9a227",
44
- goldLight: "#d4b84a",
45
- goldBright: "#e5c84d",
46
- goldMuted: "#8b7355",
47
- goldPale: "#d4c4a8",
48
- goldGlow: "rgba(201, 162, 39, 0.15)",
49
- // Neutrals
50
- white: "#ffffff",
51
- silver: "#a3a3a3",
52
- zinc: "#71717a",
53
- dim: "#52525b",
54
- // Semantic
55
- success: "#22c55e",
56
- successMuted: "#166534",
57
- error: "#dc2626",
58
- errorMuted: "#991b1b",
59
- warning: "#d97706",
60
- warningMuted: "#92400e",
61
- info: "#0ea5e9",
62
- infoMuted: "#0369a1"
63
- };
64
-
65
- // src/tokens/typography.ts
66
- var typography = {
67
- // Headings use Marcellus, a classic serif
68
- fontHeading: ["Marcellus", "serif"],
69
- // Body and UI use Raleway
70
- fontBody: ["Raleway", "system-ui", "sans-serif"],
71
- fontMono: ["JetBrains Mono", "Fira Code", "SF Mono", "monospace"],
72
- fontSize: {
73
- xs: ["0.75rem", { lineHeight: "1rem" }],
74
- sm: ["0.875rem", { lineHeight: "1.25rem" }],
75
- base: ["1rem", { lineHeight: "1.5rem" }],
76
- lg: ["1.125rem", { lineHeight: "1.75rem" }],
77
- xl: ["1.25rem", { lineHeight: "1.75rem" }],
78
- "2xl": ["1.5rem", { lineHeight: "2rem" }],
79
- "3xl": ["1.875rem", { lineHeight: "2.25rem" }],
80
- "4xl": ["2.25rem", { lineHeight: "2.5rem" }],
81
- "5xl": ["3rem", { lineHeight: "1" }],
82
- "6xl": ["3.75rem", { lineHeight: "1" }]
83
- },
84
- fontWeight: {
85
- normal: "400",
86
- medium: "500",
87
- semibold: "600",
88
- bold: "700"
89
- },
90
- lineHeight: {
91
- none: "1",
92
- tight: "1.25",
93
- snug: "1.375",
94
- normal: "1.5",
95
- relaxed: "1.625",
96
- loose: "2"
97
- },
98
- letterSpacing: {
99
- tighter: "-0.05em",
100
- tight: "-0.025em",
101
- normal: "0",
102
- wide: "0.025em",
103
- wider: "0.05em",
104
- widest: "0.1em"
105
- }
106
- };
107
-
108
- // src/tokens/spacing.ts
109
- var spacing = {
110
- px: "1px",
111
- 0: "0",
112
- 0.5: "0.125rem",
113
- 1: "0.25rem",
114
- 1.5: "0.375rem",
115
- 2: "0.5rem",
116
- 2.5: "0.625rem",
117
- 3: "0.75rem",
118
- 3.5: "0.875rem",
119
- 4: "1rem",
120
- 5: "1.25rem",
121
- 6: "1.5rem",
122
- 7: "1.75rem",
123
- 8: "2rem",
124
- 9: "2.25rem",
125
- 10: "2.5rem",
126
- 11: "2.75rem",
127
- 12: "3rem",
128
- 14: "3.5rem",
129
- 16: "4rem",
130
- 20: "5rem",
131
- 24: "6rem",
132
- 28: "7rem",
133
- 32: "8rem"
134
- };
135
-
136
- // src/tokens/shadows.ts
137
- var shadows = {
138
- sm: "0 1px 2px 0 rgba(0, 0, 0, 0.4)",
139
- md: "0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3)",
140
- lg: "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)",
141
- xl: "0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3)",
142
- "2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.5)",
143
- glow: "0 0 20px rgba(201, 162, 39, 0.3)",
144
- "glow-sm": "0 0 10px rgba(201, 162, 39, 0.2)",
145
- "glow-lg": "0 0 40px rgba(201, 162, 39, 0.4)",
146
- inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)"
147
- };
148
-
149
- // src/tokens/transitions.ts
150
- var duration = {
151
- instant: "75ms",
152
- fast: "150ms",
153
- normal: "200ms",
154
- slow: "300ms",
155
- slower: "500ms"
156
- };
157
- var easing = {
158
- smooth: "cubic-bezier(0.16, 1, 0.3, 1)",
159
- snap: "cubic-bezier(0.5, 0, 0.1, 1)"
160
- };
161
-
162
- // src/tokens/radii.ts
163
- var radii = {
164
- sm: "0.125rem",
165
- md: "0.25rem",
166
- lg: "0.375rem",
167
- xl: "0.5rem",
168
- "2xl": "0.75rem",
169
- "3xl": "1rem",
170
- full: "9999px"
171
- };
172
- // Annotate the CommonJS export names for ESM import in node:
173
- 0 && (module.exports = {
174
- colors,
175
- duration,
176
- easing,
177
- radii,
178
- shadows,
179
- spacing,
180
- typography
181
- });
182
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/tokens/index.ts","../../src/tokens/colors.ts","../../src/tokens/typography.ts","../../src/tokens/spacing.ts","../../src/tokens/shadows.ts","../../src/tokens/transitions.ts","../../src/tokens/radii.ts"],"sourcesContent":["export { colors, type ColorToken } from './colors'\nexport { typography, type TypographyToken } from './typography'\nexport { spacing, type SpacingToken } from './spacing'\nexport { shadows, type ShadowToken } from './shadows'\nexport { duration, easing, type DurationToken, type EasingToken } from './transitions'\nexport { radii, type RadiusToken } from './radii'\n","export const colors = {\n // Black spectrum\n void: '#000000',\n obsidian: '#0a0a0a',\n charcoal: '#141414',\n graphite: '#1f1f1f',\n slate: '#2a2a2a',\n ash: '#3d3d3d',\n\n // Gold spectrum\n gold: '#c9a227',\n goldLight: '#d4b84a',\n goldBright: '#e5c84d',\n goldMuted: '#8b7355',\n goldPale: '#d4c4a8',\n goldGlow: 'rgba(201, 162, 39, 0.15)',\n\n // Neutrals\n white: '#ffffff',\n silver: '#a3a3a3',\n zinc: '#71717a',\n dim: '#52525b',\n\n // Semantic\n success: '#22c55e',\n successMuted: '#166534',\n error: '#dc2626',\n errorMuted: '#991b1b',\n warning: '#d97706',\n warningMuted: '#92400e',\n info: '#0ea5e9',\n infoMuted: '#0369a1',\n} as const\n\nexport type ColorToken = keyof typeof colors\n","export const typography = {\n // Headings use Marcellus, a classic serif\n fontHeading: ['Marcellus', 'serif'],\n // Body and UI use Raleway\n fontBody: ['Raleway', 'system-ui', 'sans-serif'],\n fontMono: ['JetBrains Mono', 'Fira Code', 'SF Mono', 'monospace'],\n\n fontSize: {\n xs: ['0.75rem', {lineHeight: '1rem'}],\n sm: ['0.875rem', {lineHeight: '1.25rem'}],\n base: ['1rem', {lineHeight: '1.5rem'}],\n lg: ['1.125rem', {lineHeight: '1.75rem'}],\n xl: ['1.25rem', {lineHeight: '1.75rem'}],\n '2xl': ['1.5rem', {lineHeight: '2rem'}],\n '3xl': ['1.875rem', {lineHeight: '2.25rem'}],\n '4xl': ['2.25rem', {lineHeight: '2.5rem'}],\n '5xl': ['3rem', {lineHeight: '1'}],\n '6xl': ['3.75rem', {lineHeight: '1'}],\n },\n\n fontWeight: {\n normal: '400',\n medium: '500',\n semibold: '600',\n bold: '700',\n },\n\n lineHeight: {\n none: '1',\n tight: '1.25',\n snug: '1.375',\n normal: '1.5',\n relaxed: '1.625',\n loose: '2',\n },\n\n letterSpacing: {\n tighter: '-0.05em',\n tight: '-0.025em',\n normal: '0',\n wide: '0.025em',\n wider: '0.05em',\n widest: '0.1em',\n },\n} as const\n\nexport type TypographyToken = keyof typeof typography\n","export const spacing = {\n px: '1px',\n 0: '0',\n 0.5: '0.125rem',\n 1: '0.25rem',\n 1.5: '0.375rem',\n 2: '0.5rem',\n 2.5: '0.625rem',\n 3: '0.75rem',\n 3.5: '0.875rem',\n 4: '1rem',\n 5: '1.25rem',\n 6: '1.5rem',\n 7: '1.75rem',\n 8: '2rem',\n 9: '2.25rem',\n 10: '2.5rem',\n 11: '2.75rem',\n 12: '3rem',\n 14: '3.5rem',\n 16: '4rem',\n 20: '5rem',\n 24: '6rem',\n 28: '7rem',\n 32: '8rem',\n} as const\n\nexport type SpacingToken = keyof typeof spacing\n","export const shadows = {\n sm: '0 1px 2px 0 rgba(0, 0, 0, 0.4)',\n md: '0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3)',\n lg: '0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)',\n xl: '0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3)',\n '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.5)',\n glow: '0 0 20px rgba(201, 162, 39, 0.3)',\n 'glow-sm': '0 0 10px rgba(201, 162, 39, 0.2)',\n 'glow-lg': '0 0 40px rgba(201, 162, 39, 0.4)',\n inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)',\n} as const\n\nexport type ShadowToken = keyof typeof shadows\n","export const duration = {\n instant: '75ms',\n fast: '150ms',\n normal: '200ms',\n slow: '300ms',\n slower: '500ms',\n} as const\n\nexport const easing = {\n smooth: 'cubic-bezier(0.16, 1, 0.3, 1)',\n snap: 'cubic-bezier(0.5, 0, 0.1, 1)',\n} as const\n\nexport type DurationToken = keyof typeof duration\nexport type EasingToken = keyof typeof easing\n","export const radii = {\n sm: '0.125rem',\n md: '0.25rem',\n lg: '0.375rem',\n xl: '0.5rem',\n '2xl': '0.75rem',\n '3xl': '1rem',\n full: '9999px',\n} as const\n\nexport type RadiusToken = keyof typeof radii\n"],"mappings":"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","names":[]}
@@ -1,19 +0,0 @@
1
- import {
2
- colors,
3
- duration,
4
- easing,
5
- radii,
6
- shadows,
7
- spacing,
8
- typography
9
- } from "../chunk-MDNHT46W.mjs";
10
- export {
11
- colors,
12
- duration,
13
- easing,
14
- radii,
15
- shadows,
16
- spacing,
17
- typography
18
- };
19
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}