-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokens.css
More file actions
73 lines (64 loc) · 2.11 KB
/
Copy pathtokens.css
File metadata and controls
73 lines (64 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* Hallmark · genre: modern-minimal · theme: Violet · designed-as-app
* paper-band: light · display-style: geometric-sans · accent-hue: cool-violet
* pre-emit critique: P5 H5 E5 S5 R5 V5
*/
:root {
color-scheme: light;
/* Color — Violet (modern-minimal) */
--color-paper: oklch(99% 0.003 280);
--color-paper-2: oklch(97% 0.004 280);
--color-paper-3: oklch(94% 0.005 280);
--color-rule: oklch(90% 0.006 280);
--color-rule-2: oklch(78% 0.008 280);
--color-muted: oklch(50% 0.012 280);
--color-neutral: oklch(36% 0.014 280);
--color-ink-2: oklch(28% 0.018 280);
--color-ink: oklch(14% 0.015 280);
--color-accent: oklch(58% 0.16 285);
--color-accent-ink: oklch(99% 0.003 280);
--color-focus: oklch(58% 0.16 285);
--color-destructive: oklch(55% 0.22 25);
--color-destructive-ink: oklch(99% 0.003 280);
/* Typography */
--font-display: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
--font-body: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
--font-mono: var(--font-geist-mono), ui-monospace, "SF Mono", Menlo, monospace;
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-md: 1.0625rem;
--text-lg: 1.25rem;
--text-xl: 1.5rem;
--text-2xl: clamp(1.75rem, 2vw + 0.5rem, 2.5rem);
--text-display-s: clamp(2rem, 3vw + 0.5rem, 3rem);
--text-display: clamp(2.5rem, 5.5vw + 0.5rem, 5rem);
--tracking-display: -0.035em;
--tracking-tight: -0.02em;
--tracking-label: 0.04em;
/* Spacing (4 pt) */
--space-3xs: 0.25rem;
--space-2xs: 0.5rem;
--space-xs: 0.75rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
--space-xl: 3rem;
--space-2xl: 4.5rem;
--space-3xl: 7rem;
/* Motion */
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--ease-in: cubic-bezier(0.7, 0, 0.84, 0);
--ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
--dur-micro: 120ms;
--dur-short: 220ms;
--dur-long: 420ms;
/* Rules / radii */
--rule-hair: 1px;
--radius-card: 6px;
--radius-pill: 999px;
--radius-input: 6px;
/* Layout */
--page-gutter: clamp(1.25rem, 4vw, 3rem);
--page-max: 72rem;
--nav-pill-offset: var(--space-md);
}