@mithunsalinda/veyqor-tokens 0.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.
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # @mithunsalinda/veyqor-tokens
2
+
3
+ Design tokens and CSS custom properties for the Veyqor Design System.
4
+
5
+ ## Usage
6
+
7
+ Import token objects in TypeScript:
8
+
9
+ ```ts
10
+ import { colors, spacing, themes } from "@mithunsalinda/veyqor-tokens";
11
+ ```
12
+
13
+ Import CSS variables:
14
+
15
+ ```css
16
+ @import "@mithunsalinda/veyqor-tokens/styles.css";
17
+ ```
18
+
19
+ Set the active theme with `data-theme`:
20
+
21
+ ```html
22
+ <html data-theme="dark"></html>
23
+ ```
24
+
25
+ ## Development
26
+
27
+ ```bash
28
+ corepack pnpm --filter @mithunsalinda/veyqor-tokens typecheck
29
+ corepack pnpm --filter @mithunsalinda/veyqor-tokens lint
30
+ corepack pnpm --filter @mithunsalinda/veyqor-tokens build
31
+ ```
@@ -0,0 +1,9 @@
1
+ export declare const breakpoints: {
2
+ readonly xs: "480px";
3
+ readonly sm: "640px";
4
+ readonly md: "768px";
5
+ readonly lg: "1024px";
6
+ readonly xl: "1280px";
7
+ readonly "2xl": "1536px";
8
+ };
9
+ //# sourceMappingURL=breakpoints.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"breakpoints.d.ts","sourceRoot":"","sources":["../src/breakpoints.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC"}
@@ -0,0 +1,9 @@
1
+ export const breakpoints = {
2
+ xs: "480px",
3
+ sm: "640px",
4
+ md: "768px",
5
+ lg: "1024px",
6
+ xl: "1280px",
7
+ "2xl": "1536px",
8
+ };
9
+ //# sourceMappingURL=breakpoints.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"breakpoints.js","sourceRoot":"","sources":["../src/breakpoints.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,EAAE,EAAE,OAAO;IACX,EAAE,EAAE,OAAO;IACX,EAAE,EAAE,OAAO;IACX,EAAE,EAAE,QAAQ;IACZ,EAAE,EAAE,QAAQ;IACZ,KAAK,EAAE,QAAQ;CACP,CAAC"}
@@ -0,0 +1,92 @@
1
+ export declare const colors: {
2
+ readonly neutral: {
3
+ readonly 0: "#ffffff";
4
+ readonly 50: "#f8fafc";
5
+ readonly 100: "#f1f5f9";
6
+ readonly 200: "#e2e8f0";
7
+ readonly 300: "#cbd5e1";
8
+ readonly 400: "#94a3b8";
9
+ readonly 500: "#64748b";
10
+ readonly 600: "#475569";
11
+ readonly 700: "#334155";
12
+ readonly 800: "#1e293b";
13
+ readonly 900: "#0f172a";
14
+ readonly 950: "#020617";
15
+ };
16
+ readonly orange: {
17
+ readonly 50: "#fff7ed";
18
+ readonly 100: "#ffedd5";
19
+ readonly 200: "#fed7aa";
20
+ readonly 300: "#fdba74";
21
+ readonly 400: "#fb923c";
22
+ readonly 500: "#f97316";
23
+ readonly 600: "#ea580c";
24
+ readonly 700: "#c2410c";
25
+ readonly 800: "#9a3412";
26
+ readonly 900: "#7c2d12";
27
+ };
28
+ readonly red: {
29
+ readonly 50: "#fef2f2";
30
+ readonly 100: "#fee2e2";
31
+ readonly 500: "#ef4444";
32
+ readonly 600: "#dc2626";
33
+ readonly 700: "#b91c1c";
34
+ };
35
+ readonly green: {
36
+ readonly 50: "#f0fdf4";
37
+ readonly 100: "#dcfce7";
38
+ readonly 500: "#22c55e";
39
+ readonly 600: "#16a34a";
40
+ readonly 700: "#15803d";
41
+ };
42
+ readonly blue: {
43
+ readonly 50: "#eff6ff";
44
+ readonly 100: "#dbeafe";
45
+ readonly 500: "#3b82f6";
46
+ readonly 600: "#2563eb";
47
+ readonly 700: "#1d4ed8";
48
+ };
49
+ };
50
+ export declare const semanticColors: {
51
+ readonly light: {
52
+ readonly background: "#ffffff";
53
+ readonly surface: "#ffffff";
54
+ readonly surfaceMuted: "#f8fafc";
55
+ readonly surfaceRaised: "#ffffff";
56
+ readonly border: "#e2e8f0";
57
+ readonly borderStrong: "#cbd5e1";
58
+ readonly text: "#0f172a";
59
+ readonly textMuted: "#475569";
60
+ readonly textInverse: "#ffffff";
61
+ readonly primary: "#0f172a";
62
+ readonly primaryHover: "#1e293b";
63
+ readonly secondary: "#f97316";
64
+ readonly secondaryHover: "#ea580c";
65
+ readonly danger: "#dc2626";
66
+ readonly dangerHover: "#b91c1c";
67
+ readonly success: "#16a34a";
68
+ readonly info: "#2563eb";
69
+ readonly focus: "#f97316";
70
+ };
71
+ readonly dark: {
72
+ readonly background: "#020617";
73
+ readonly surface: "#0f172a";
74
+ readonly surfaceMuted: "#1e293b";
75
+ readonly surfaceRaised: "#1e293b";
76
+ readonly border: "#334155";
77
+ readonly borderStrong: "#475569";
78
+ readonly text: "#f8fafc";
79
+ readonly textMuted: "#cbd5e1";
80
+ readonly textInverse: "#020617";
81
+ readonly primary: "#f8fafc";
82
+ readonly primaryHover: "#e2e8f0";
83
+ readonly secondary: "#fb923c";
84
+ readonly secondaryHover: "#fdba74";
85
+ readonly danger: "#ef4444";
86
+ readonly dangerHover: "#dc2626";
87
+ readonly success: "#22c55e";
88
+ readonly info: "#3b82f6";
89
+ readonly focus: "#fb923c";
90
+ };
91
+ };
92
+ //# sourceMappingURL=colors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../src/colors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDT,CAAC;AAEX,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCjB,CAAC"}
package/dist/colors.js ADDED
@@ -0,0 +1,92 @@
1
+ export const colors = {
2
+ neutral: {
3
+ 0: "#ffffff",
4
+ 50: "#f8fafc",
5
+ 100: "#f1f5f9",
6
+ 200: "#e2e8f0",
7
+ 300: "#cbd5e1",
8
+ 400: "#94a3b8",
9
+ 500: "#64748b",
10
+ 600: "#475569",
11
+ 700: "#334155",
12
+ 800: "#1e293b",
13
+ 900: "#0f172a",
14
+ 950: "#020617",
15
+ },
16
+ orange: {
17
+ 50: "#fff7ed",
18
+ 100: "#ffedd5",
19
+ 200: "#fed7aa",
20
+ 300: "#fdba74",
21
+ 400: "#fb923c",
22
+ 500: "#f97316",
23
+ 600: "#ea580c",
24
+ 700: "#c2410c",
25
+ 800: "#9a3412",
26
+ 900: "#7c2d12",
27
+ },
28
+ red: {
29
+ 50: "#fef2f2",
30
+ 100: "#fee2e2",
31
+ 500: "#ef4444",
32
+ 600: "#dc2626",
33
+ 700: "#b91c1c",
34
+ },
35
+ green: {
36
+ 50: "#f0fdf4",
37
+ 100: "#dcfce7",
38
+ 500: "#22c55e",
39
+ 600: "#16a34a",
40
+ 700: "#15803d",
41
+ },
42
+ blue: {
43
+ 50: "#eff6ff",
44
+ 100: "#dbeafe",
45
+ 500: "#3b82f6",
46
+ 600: "#2563eb",
47
+ 700: "#1d4ed8",
48
+ },
49
+ };
50
+ export const semanticColors = {
51
+ light: {
52
+ background: colors.neutral[0],
53
+ surface: colors.neutral[0],
54
+ surfaceMuted: colors.neutral[50],
55
+ surfaceRaised: colors.neutral[0],
56
+ border: colors.neutral[200],
57
+ borderStrong: colors.neutral[300],
58
+ text: colors.neutral[900],
59
+ textMuted: colors.neutral[600],
60
+ textInverse: colors.neutral[0],
61
+ primary: colors.neutral[900],
62
+ primaryHover: colors.neutral[800],
63
+ secondary: colors.orange[500],
64
+ secondaryHover: colors.orange[600],
65
+ danger: colors.red[600],
66
+ dangerHover: colors.red[700],
67
+ success: colors.green[600],
68
+ info: colors.blue[600],
69
+ focus: colors.orange[500],
70
+ },
71
+ dark: {
72
+ background: colors.neutral[950],
73
+ surface: colors.neutral[900],
74
+ surfaceMuted: colors.neutral[800],
75
+ surfaceRaised: colors.neutral[800],
76
+ border: colors.neutral[700],
77
+ borderStrong: colors.neutral[600],
78
+ text: colors.neutral[50],
79
+ textMuted: colors.neutral[300],
80
+ textInverse: colors.neutral[950],
81
+ primary: colors.neutral[50],
82
+ primaryHover: colors.neutral[200],
83
+ secondary: colors.orange[400],
84
+ secondaryHover: colors.orange[300],
85
+ danger: colors.red[500],
86
+ dangerHover: colors.red[600],
87
+ success: colors.green[500],
88
+ info: colors.blue[500],
89
+ focus: colors.orange[400],
90
+ },
91
+ };
92
+ //# sourceMappingURL=colors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors.js","sourceRoot":"","sources":["../src/colors.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ export { breakpoints } from "./breakpoints";
2
+ export { colors, semanticColors } from "./colors";
3
+ export { radius } from "./radius";
4
+ export { shadows } from "./shadows";
5
+ export { spacing } from "./spacing";
6
+ export { themes, type ThemeName } from "./themes";
7
+ export { transitions } from "./transitions";
8
+ export { fontFamilies, fontSizes, fontWeights, lineHeights, typography } from "./typography";
9
+ export { zIndex } from "./zIndex";
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC7F,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,10 @@
1
+ export { breakpoints } from "./breakpoints";
2
+ export { colors, semanticColors } from "./colors";
3
+ export { radius } from "./radius";
4
+ export { shadows } from "./shadows";
5
+ export { spacing } from "./spacing";
6
+ export { themes } from "./themes";
7
+ export { transitions } from "./transitions";
8
+ export { fontFamilies, fontSizes, fontWeights, lineHeights, typography } from "./typography";
9
+ export { zIndex } from "./zIndex";
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAkB,MAAM,UAAU,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC7F,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC"}
@@ -0,0 +1,10 @@
1
+ export declare const radius: {
2
+ readonly none: "0";
3
+ readonly xs: "0.125rem";
4
+ readonly sm: "0.25rem";
5
+ readonly md: "0.5rem";
6
+ readonly lg: "0.75rem";
7
+ readonly xl: "1rem";
8
+ readonly full: "9999px";
9
+ };
10
+ //# sourceMappingURL=radius.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radius.d.ts","sourceRoot":"","sources":["../src/radius.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;CAQT,CAAC"}
package/dist/radius.js ADDED
@@ -0,0 +1,10 @@
1
+ export const radius = {
2
+ none: "0",
3
+ xs: "0.125rem",
4
+ sm: "0.25rem",
5
+ md: "0.5rem",
6
+ lg: "0.75rem",
7
+ xl: "1rem",
8
+ full: "9999px",
9
+ };
10
+ //# sourceMappingURL=radius.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radius.js","sourceRoot":"","sources":["../src/radius.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,IAAI,EAAE,GAAG;IACT,EAAE,EAAE,UAAU;IACd,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,QAAQ;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,MAAM;IACV,IAAI,EAAE,QAAQ;CACN,CAAC"}
@@ -0,0 +1,8 @@
1
+ export declare const shadows: {
2
+ readonly none: "none";
3
+ readonly sm: "0 1px 2px rgb(15 23 42 / 0.08)";
4
+ readonly md: "0 4px 12px rgb(15 23 42 / 0.12)";
5
+ readonly lg: "0 12px 28px rgb(15 23 42 / 0.16)";
6
+ readonly focus: "0 0 0 3px rgb(249 115 22 / 0.35)";
7
+ };
8
+ //# sourceMappingURL=shadows.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shadows.d.ts","sourceRoot":"","sources":["../src/shadows.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO;;;;;;CAMV,CAAC"}
@@ -0,0 +1,8 @@
1
+ export const shadows = {
2
+ none: "none",
3
+ sm: "0 1px 2px rgb(15 23 42 / 0.08)",
4
+ md: "0 4px 12px rgb(15 23 42 / 0.12)",
5
+ lg: "0 12px 28px rgb(15 23 42 / 0.16)",
6
+ focus: "0 0 0 3px rgb(249 115 22 / 0.35)",
7
+ };
8
+ //# sourceMappingURL=shadows.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shadows.js","sourceRoot":"","sources":["../src/shadows.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,IAAI,EAAE,MAAM;IACZ,EAAE,EAAE,gCAAgC;IACpC,EAAE,EAAE,iCAAiC;IACrC,EAAE,EAAE,kCAAkC;IACtC,KAAK,EAAE,kCAAkC;CACjC,CAAC"}
@@ -0,0 +1,12 @@
1
+ export declare const spacing: {
2
+ readonly "0": "0";
3
+ readonly "2xs": "0.125rem";
4
+ readonly xs: "0.25rem";
5
+ readonly sm: "0.5rem";
6
+ readonly md: "1rem";
7
+ readonly lg: "1.5rem";
8
+ readonly xl: "2rem";
9
+ readonly "2xl": "3rem";
10
+ readonly "3xl": "4rem";
11
+ };
12
+ //# sourceMappingURL=spacing.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"spacing.d.ts","sourceRoot":"","sources":["../src/spacing.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO;;;;;;;;;;CAUV,CAAC"}
@@ -0,0 +1,12 @@
1
+ export const spacing = {
2
+ "0": "0",
3
+ "2xs": "0.125rem",
4
+ xs: "0.25rem",
5
+ sm: "0.5rem",
6
+ md: "1rem",
7
+ lg: "1.5rem",
8
+ xl: "2rem",
9
+ "2xl": "3rem",
10
+ "3xl": "4rem",
11
+ };
12
+ //# sourceMappingURL=spacing.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"spacing.js","sourceRoot":"","sources":["../src/spacing.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,GAAG,EAAE,GAAG;IACR,KAAK,EAAE,UAAU;IACjB,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,QAAQ;IACZ,EAAE,EAAE,MAAM;IACV,EAAE,EAAE,QAAQ;IACZ,EAAE,EAAE,MAAM;IACV,KAAK,EAAE,MAAM;IACb,KAAK,EAAE,MAAM;CACL,CAAC"}
@@ -0,0 +1,146 @@
1
+ :root,
2
+ [data-theme="light"] {
3
+ color-scheme: light;
4
+
5
+ --ds-color-background: #ffffff;
6
+ --ds-color-surface: #ffffff;
7
+ --ds-color-surface-muted: #f8fafc;
8
+ --ds-color-surface-raised: #ffffff;
9
+ --ds-color-border: #e2e8f0;
10
+ --ds-color-border-strong: #cbd5e1;
11
+ --ds-color-text: #0f172a;
12
+ --ds-color-text-muted: #475569;
13
+ --ds-color-text-inverse: #ffffff;
14
+ --ds-color-primary: #0f172a;
15
+ --ds-color-primary-hover: #1e293b;
16
+ --ds-color-primary-soft: #f1f5f9;
17
+ --ds-color-primary-strong: #020617;
18
+ --ds-color-secondary: #f97316;
19
+ --ds-color-secondary-hover: #ea580c;
20
+ --ds-color-danger: #dc2626;
21
+ --ds-color-danger-hover: #b91c1c;
22
+ --ds-color-danger-soft: #fef2f2;
23
+ --ds-color-danger-strong: #b91c1c;
24
+ --ds-color-success: #16a34a;
25
+ --ds-color-success-soft: #f0fdf4;
26
+ --ds-color-success-strong: #15803d;
27
+ --ds-color-warning: #f97316;
28
+ --ds-color-warning-soft: #fff7ed;
29
+ --ds-color-warning-strong: #c2410c;
30
+ --ds-color-info: #2563eb;
31
+ --ds-color-info-soft: #eff6ff;
32
+ --ds-color-info-strong: #1d4ed8;
33
+ --ds-color-focus: #f97316;
34
+
35
+ --ds-font-sans:
36
+ Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
37
+ --ds-font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
38
+ --ds-font-size-xs: 0.75rem;
39
+ --ds-font-size-sm: 0.875rem;
40
+ --ds-font-size-md: 1rem;
41
+ --ds-font-size-lg: 1.125rem;
42
+ --ds-font-size-xl: 1.25rem;
43
+ --ds-font-size-2xl: 1.5rem;
44
+ --ds-font-size-3xl: 1.875rem;
45
+ --ds-font-size-4xl: 2.25rem;
46
+ --ds-font-weight-regular: 400;
47
+ --ds-font-weight-medium: 500;
48
+ --ds-font-weight-semibold: 600;
49
+ --ds-font-weight-bold: 700;
50
+ --ds-line-height-tight: 1.2;
51
+ --ds-line-height-snug: 1.35;
52
+ --ds-line-height-normal: 1.5;
53
+ --ds-line-height-relaxed: 1.7;
54
+
55
+ --ds-spacing-0: 0;
56
+ --ds-spacing-2xs: 0.125rem;
57
+ --ds-spacing-xs: 0.25rem;
58
+ --ds-spacing-sm: 0.5rem;
59
+ --ds-spacing-md: 1rem;
60
+ --ds-spacing-lg: 1.5rem;
61
+ --ds-spacing-xl: 2rem;
62
+ --ds-spacing-2xl: 3rem;
63
+ --ds-spacing-3xl: 4rem;
64
+
65
+ --ds-radius-none: 0;
66
+ --ds-radius-xs: 0.125rem;
67
+ --ds-radius-sm: 0.25rem;
68
+ --ds-radius-md: 0.5rem;
69
+ --ds-radius-lg: 0.75rem;
70
+ --ds-radius-xl: 1rem;
71
+ --ds-radius-full: 9999px;
72
+
73
+ --ds-shadow-none: none;
74
+ --ds-shadow-sm: 0 1px 2px rgb(15 23 42 / 0.08);
75
+ --ds-shadow-md: 0 4px 12px rgb(15 23 42 / 0.12);
76
+ --ds-shadow-lg: 0 12px 28px rgb(15 23 42 / 0.16);
77
+ --ds-shadow-focus: 0 0 0 3px rgb(249 115 22 / 0.35);
78
+
79
+ --ds-breakpoint-xs: 480px;
80
+ --ds-breakpoint-sm: 640px;
81
+ --ds-breakpoint-md: 768px;
82
+ --ds-breakpoint-lg: 1024px;
83
+ --ds-breakpoint-xl: 1280px;
84
+ --ds-breakpoint-2xl: 1536px;
85
+
86
+ --ds-transition-duration-instant: 0ms;
87
+ --ds-transition-duration-fast: 120ms;
88
+ --ds-transition-duration-normal: 180ms;
89
+ --ds-transition-duration-slow: 240ms;
90
+ --ds-transition-easing-standard: cubic-bezier(0.2, 0, 0, 1);
91
+ --ds-transition-easing-entrance: cubic-bezier(0, 0, 0.2, 1);
92
+ --ds-transition-easing-exit: cubic-bezier(0.4, 0, 1, 1);
93
+
94
+ --ds-z-index-base: 0;
95
+ --ds-z-index-raised: 10;
96
+ --ds-z-index-dropdown: 100;
97
+ --ds-z-index-sticky: 200;
98
+ --ds-z-index-overlay: 400;
99
+ --ds-z-index-modal: 500;
100
+ --ds-z-index-toast: 600;
101
+ --ds-z-index-tooltip: 700;
102
+ }
103
+
104
+ [data-theme="dark"] {
105
+ color-scheme: dark;
106
+
107
+ --ds-color-background: #020617;
108
+ --ds-color-surface: #0f172a;
109
+ --ds-color-surface-muted: #1e293b;
110
+ --ds-color-surface-raised: #1e293b;
111
+ --ds-color-border: #334155;
112
+ --ds-color-border-strong: #475569;
113
+ --ds-color-text: #f8fafc;
114
+ --ds-color-text-muted: #cbd5e1;
115
+ --ds-color-text-inverse: #020617;
116
+ --ds-color-primary: #f8fafc;
117
+ --ds-color-primary-hover: #e2e8f0;
118
+ --ds-color-primary-soft: #1e293b;
119
+ --ds-color-primary-strong: #ffffff;
120
+ --ds-color-secondary: #fb923c;
121
+ --ds-color-secondary-hover: #fdba74;
122
+ --ds-color-danger: #ef4444;
123
+ --ds-color-danger-hover: #dc2626;
124
+ --ds-color-danger-soft: #7f1d1d;
125
+ --ds-color-danger-strong: #fecaca;
126
+ --ds-color-success: #22c55e;
127
+ --ds-color-success-soft: #14532d;
128
+ --ds-color-success-strong: #bbf7d0;
129
+ --ds-color-warning: #fb923c;
130
+ --ds-color-warning-soft: #7c2d12;
131
+ --ds-color-warning-strong: #fed7aa;
132
+ --ds-color-info: #3b82f6;
133
+ --ds-color-info-soft: #1e3a8a;
134
+ --ds-color-info-strong: #bfdbfe;
135
+ --ds-color-focus: #fb923c;
136
+ }
137
+
138
+ [data-theme="veyqor"] {
139
+ --ds-color-primary: #111827;
140
+ --ds-color-primary-hover: #1f2937;
141
+ --ds-color-primary-soft: #f3f4f6;
142
+ --ds-color-primary-strong: #030712;
143
+ --ds-color-secondary: #ff5a1f;
144
+ --ds-color-secondary-hover: #e94b10;
145
+ --ds-color-focus: #ff5a1f;
146
+ }
@@ -0,0 +1,70 @@
1
+ export declare const themes: {
2
+ readonly light: {
3
+ readonly colors: {
4
+ readonly background: "#ffffff";
5
+ readonly surface: "#ffffff";
6
+ readonly surfaceMuted: "#f8fafc";
7
+ readonly surfaceRaised: "#ffffff";
8
+ readonly border: "#e2e8f0";
9
+ readonly borderStrong: "#cbd5e1";
10
+ readonly text: "#0f172a";
11
+ readonly textMuted: "#475569";
12
+ readonly textInverse: "#ffffff";
13
+ readonly primary: "#0f172a";
14
+ readonly primaryHover: "#1e293b";
15
+ readonly secondary: "#f97316";
16
+ readonly secondaryHover: "#ea580c";
17
+ readonly danger: "#dc2626";
18
+ readonly dangerHover: "#b91c1c";
19
+ readonly success: "#16a34a";
20
+ readonly info: "#2563eb";
21
+ readonly focus: "#f97316";
22
+ };
23
+ };
24
+ readonly dark: {
25
+ readonly colors: {
26
+ readonly background: "#020617";
27
+ readonly surface: "#0f172a";
28
+ readonly surfaceMuted: "#1e293b";
29
+ readonly surfaceRaised: "#1e293b";
30
+ readonly border: "#334155";
31
+ readonly borderStrong: "#475569";
32
+ readonly text: "#f8fafc";
33
+ readonly textMuted: "#cbd5e1";
34
+ readonly textInverse: "#020617";
35
+ readonly primary: "#f8fafc";
36
+ readonly primaryHover: "#e2e8f0";
37
+ readonly secondary: "#fb923c";
38
+ readonly secondaryHover: "#fdba74";
39
+ readonly danger: "#ef4444";
40
+ readonly dangerHover: "#dc2626";
41
+ readonly success: "#22c55e";
42
+ readonly info: "#3b82f6";
43
+ readonly focus: "#fb923c";
44
+ };
45
+ };
46
+ readonly brand: {
47
+ readonly colors: {
48
+ readonly primary: "#111827";
49
+ readonly primaryHover: "#1f2937";
50
+ readonly secondary: "#ff5a1f";
51
+ readonly secondaryHover: "#e94b10";
52
+ readonly focus: "#ff5a1f";
53
+ readonly background: "#ffffff";
54
+ readonly surface: "#ffffff";
55
+ readonly surfaceMuted: "#f8fafc";
56
+ readonly surfaceRaised: "#ffffff";
57
+ readonly border: "#e2e8f0";
58
+ readonly borderStrong: "#cbd5e1";
59
+ readonly text: "#0f172a";
60
+ readonly textMuted: "#475569";
61
+ readonly textInverse: "#ffffff";
62
+ readonly danger: "#dc2626";
63
+ readonly dangerHover: "#b91c1c";
64
+ readonly success: "#16a34a";
65
+ readonly info: "#2563eb";
66
+ };
67
+ };
68
+ };
69
+ export type ThemeName = keyof typeof themes;
70
+ //# sourceMappingURL=themes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"themes.d.ts","sourceRoot":"","sources":["../src/themes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiBT,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,MAAM,OAAO,MAAM,CAAC"}
package/dist/themes.js ADDED
@@ -0,0 +1,20 @@
1
+ import { semanticColors } from "./colors";
2
+ export const themes = {
3
+ light: {
4
+ colors: semanticColors.light,
5
+ },
6
+ dark: {
7
+ colors: semanticColors.dark,
8
+ },
9
+ brand: {
10
+ colors: {
11
+ ...semanticColors.light,
12
+ primary: "#111827",
13
+ primaryHover: "#1f2937",
14
+ secondary: "#ff5a1f",
15
+ secondaryHover: "#e94b10",
16
+ focus: "#ff5a1f",
17
+ },
18
+ },
19
+ };
20
+ //# sourceMappingURL=themes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"themes.js","sourceRoot":"","sources":["../src/themes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE1C,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,KAAK,EAAE;QACL,MAAM,EAAE,cAAc,CAAC,KAAK;KAC7B;IACD,IAAI,EAAE;QACJ,MAAM,EAAE,cAAc,CAAC,IAAI;KAC5B;IACD,KAAK,EAAE;QACL,MAAM,EAAE;YACN,GAAG,cAAc,CAAC,KAAK;YACvB,OAAO,EAAE,SAAS;YAClB,YAAY,EAAE,SAAS;YACvB,SAAS,EAAE,SAAS;YACpB,cAAc,EAAE,SAAS;YACzB,KAAK,EAAE,SAAS;SACjB;KACF;CACO,CAAC"}
@@ -0,0 +1,14 @@
1
+ export declare const transitions: {
2
+ readonly duration: {
3
+ readonly instant: "0ms";
4
+ readonly fast: "120ms";
5
+ readonly normal: "180ms";
6
+ readonly slow: "240ms";
7
+ };
8
+ readonly easing: {
9
+ readonly standard: "cubic-bezier(0.2, 0, 0, 1)";
10
+ readonly entrance: "cubic-bezier(0, 0, 0.2, 1)";
11
+ readonly exit: "cubic-bezier(0.4, 0, 1, 1)";
12
+ };
13
+ };
14
+ //# sourceMappingURL=transitions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transitions.d.ts","sourceRoot":"","sources":["../src/transitions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;CAYd,CAAC"}
@@ -0,0 +1,14 @@
1
+ export const transitions = {
2
+ duration: {
3
+ instant: "0ms",
4
+ fast: "120ms",
5
+ normal: "180ms",
6
+ slow: "240ms",
7
+ },
8
+ easing: {
9
+ standard: "cubic-bezier(0.2, 0, 0, 1)",
10
+ entrance: "cubic-bezier(0, 0, 0.2, 1)",
11
+ exit: "cubic-bezier(0.4, 0, 1, 1)",
12
+ },
13
+ };
14
+ //# sourceMappingURL=transitions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transitions.js","sourceRoot":"","sources":["../src/transitions.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,QAAQ,EAAE;QACR,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,OAAO;QACb,MAAM,EAAE,OAAO;QACf,IAAI,EAAE,OAAO;KACd;IACD,MAAM,EAAE;QACN,QAAQ,EAAE,4BAA4B;QACtC,QAAQ,EAAE,4BAA4B;QACtC,IAAI,EAAE,4BAA4B;KACnC;CACO,CAAC"}
@@ -0,0 +1,55 @@
1
+ export declare const fontFamilies: {
2
+ readonly sans: "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif";
3
+ readonly mono: "\"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, monospace";
4
+ };
5
+ export declare const fontSizes: {
6
+ readonly xs: "0.75rem";
7
+ readonly sm: "0.875rem";
8
+ readonly md: "1rem";
9
+ readonly lg: "1.125rem";
10
+ readonly xl: "1.25rem";
11
+ readonly "2xl": "1.5rem";
12
+ readonly "3xl": "1.875rem";
13
+ readonly "4xl": "2.25rem";
14
+ };
15
+ export declare const fontWeights: {
16
+ readonly regular: "400";
17
+ readonly medium: "500";
18
+ readonly semibold: "600";
19
+ readonly bold: "700";
20
+ };
21
+ export declare const lineHeights: {
22
+ readonly tight: "1.2";
23
+ readonly snug: "1.35";
24
+ readonly normal: "1.5";
25
+ readonly relaxed: "1.7";
26
+ };
27
+ export declare const typography: {
28
+ readonly fontFamilies: {
29
+ readonly sans: "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif";
30
+ readonly mono: "\"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, monospace";
31
+ };
32
+ readonly fontSizes: {
33
+ readonly xs: "0.75rem";
34
+ readonly sm: "0.875rem";
35
+ readonly md: "1rem";
36
+ readonly lg: "1.125rem";
37
+ readonly xl: "1.25rem";
38
+ readonly "2xl": "1.5rem";
39
+ readonly "3xl": "1.875rem";
40
+ readonly "4xl": "2.25rem";
41
+ };
42
+ readonly fontWeights: {
43
+ readonly regular: "400";
44
+ readonly medium: "500";
45
+ readonly semibold: "600";
46
+ readonly bold: "700";
47
+ };
48
+ readonly lineHeights: {
49
+ readonly tight: "1.2";
50
+ readonly snug: "1.35";
51
+ readonly normal: "1.5";
52
+ readonly relaxed: "1.7";
53
+ };
54
+ };
55
+ //# sourceMappingURL=typography.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../src/typography.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;CAGf,CAAC;AAEX,eAAO,MAAM,SAAS;;;;;;;;;CASZ,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;CAKd,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;CAKd,CAAC;AAEX,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKb,CAAC"}
@@ -0,0 +1,33 @@
1
+ export const fontFamilies = {
2
+ sans: 'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
3
+ mono: '"SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace',
4
+ };
5
+ export const fontSizes = {
6
+ xs: "0.75rem",
7
+ sm: "0.875rem",
8
+ md: "1rem",
9
+ lg: "1.125rem",
10
+ xl: "1.25rem",
11
+ "2xl": "1.5rem",
12
+ "3xl": "1.875rem",
13
+ "4xl": "2.25rem",
14
+ };
15
+ export const fontWeights = {
16
+ regular: "400",
17
+ medium: "500",
18
+ semibold: "600",
19
+ bold: "700",
20
+ };
21
+ export const lineHeights = {
22
+ tight: "1.2",
23
+ snug: "1.35",
24
+ normal: "1.5",
25
+ relaxed: "1.7",
26
+ };
27
+ export const typography = {
28
+ fontFamilies,
29
+ fontSizes,
30
+ fontWeights,
31
+ lineHeights,
32
+ };
33
+ //# sourceMappingURL=typography.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"typography.js","sourceRoot":"","sources":["../src/typography.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,IAAI,EAAE,4FAA4F;IAClG,IAAI,EAAE,iEAAiE;CAC/D,CAAC;AAEX,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,UAAU;IACd,EAAE,EAAE,MAAM;IACV,EAAE,EAAE,UAAU;IACd,EAAE,EAAE,SAAS;IACb,KAAK,EAAE,QAAQ;IACf,KAAK,EAAE,UAAU;IACjB,KAAK,EAAE,SAAS;CACR,CAAC;AAEX,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,OAAO,EAAE,KAAK;IACd,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE,KAAK;CACH,CAAC;AAEX,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,KAAK,EAAE,KAAK;IACZ,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,KAAK;CACN,CAAC;AAEX,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,YAAY;IACZ,SAAS;IACT,WAAW;IACX,WAAW;CACH,CAAC"}
@@ -0,0 +1,11 @@
1
+ export declare const zIndex: {
2
+ readonly base: "0";
3
+ readonly raised: "10";
4
+ readonly dropdown: "100";
5
+ readonly sticky: "200";
6
+ readonly overlay: "400";
7
+ readonly modal: "500";
8
+ readonly toast: "600";
9
+ readonly tooltip: "700";
10
+ };
11
+ //# sourceMappingURL=zIndex.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zIndex.d.ts","sourceRoot":"","sources":["../src/zIndex.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;CAST,CAAC"}
package/dist/zIndex.js ADDED
@@ -0,0 +1,11 @@
1
+ export const zIndex = {
2
+ base: "0",
3
+ raised: "10",
4
+ dropdown: "100",
5
+ sticky: "200",
6
+ overlay: "400",
7
+ modal: "500",
8
+ toast: "600",
9
+ tooltip: "700",
10
+ };
11
+ //# sourceMappingURL=zIndex.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zIndex.js","sourceRoot":"","sources":["../src/zIndex.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,IAAI,EAAE,GAAG;IACT,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,KAAK;IACd,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,KAAK;CACN,CAAC"}
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@mithunsalinda/veyqor-tokens",
3
+ "version": "0.1.0",
4
+ "description": "Design tokens and CSS custom properties for the Veyqor design system.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "sideEffects": [
13
+ "**/*.css"
14
+ ],
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js",
19
+ "default": "./dist/index.js"
20
+ },
21
+ "./styles.css": "./dist/styles.css"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "scripts": {
27
+ "build": "tsc -p tsconfig.json && node ./scripts/copy-styles.mjs",
28
+ "typecheck": "tsc -p tsconfig.json --noEmit",
29
+ "lint": "eslint . --max-warnings=0",
30
+ "test": "echo \"No token tests yet\"",
31
+ "clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\""
32
+ }
33
+ }