@formant/aesthetics 0.0.10 → 0.1.1
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 +23 -122
- package/formant-aesthetics.css +1956 -0
- package/package.json +24 -77
- package/dist/components.css +0 -685
- package/dist/index.d.ts +0 -454
- package/dist/index.js +0 -5086
- package/dist/index.js.map +0 -1
- package/styles/globals.css +0 -200
package/styles/globals.css
DELETED
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
/* Formant Dark Theme (Default) - Slate Mist Background */
|
|
5
|
-
--background: #202428;
|
|
6
|
-
--foreground: #F2F3F4;
|
|
7
|
-
--card: #0A0F11;
|
|
8
|
-
--card-foreground: #F2F3F4;
|
|
9
|
-
--popover: #202428;
|
|
10
|
-
--popover-foreground: #F2F3F4;
|
|
11
|
-
--primary: #ACC3B3;
|
|
12
|
-
--primary-foreground: #0A0F11;
|
|
13
|
-
--secondary: #202428;
|
|
14
|
-
--secondary-foreground: #F2F3F4;
|
|
15
|
-
--muted: #202428;
|
|
16
|
-
--muted-foreground: #A3ABA9;
|
|
17
|
-
--accent: #2C4142;
|
|
18
|
-
--accent-foreground: #F2F3F4;
|
|
19
|
-
--destructive: #E8AB7F;
|
|
20
|
-
--destructive-foreground: #0A0F11;
|
|
21
|
-
--border: rgba(163, 171, 169, 0.1);
|
|
22
|
-
--input: rgba(163, 171, 169, 0.2);
|
|
23
|
-
--ring: #ACC3B3;
|
|
24
|
-
--chart-1: #ACC3B3;
|
|
25
|
-
--chart-2: #4B5E53;
|
|
26
|
-
--chart-3: #2C4142;
|
|
27
|
-
--chart-4: #E8AB7F;
|
|
28
|
-
--chart-5: #8B8CF4;
|
|
29
|
-
--radius: 0.25rem;
|
|
30
|
-
--radius-sm: calc(0.25rem * 0.6);
|
|
31
|
-
--radius-md: calc(0.25rem * 0.8);
|
|
32
|
-
--radius-lg: 0.25rem;
|
|
33
|
-
--radius-xl: calc(0.25rem * 1.4);
|
|
34
|
-
--radius-2xl: calc(0.25rem * 1.8);
|
|
35
|
-
--radius-3xl: calc(0.25rem * 2.2);
|
|
36
|
-
--radius-4xl: calc(0.25rem * 2.6);
|
|
37
|
-
--sidebar: #0A0F11;
|
|
38
|
-
--sidebar-foreground: #F2F3F4;
|
|
39
|
-
--sidebar-primary: #ACC3B3;
|
|
40
|
-
--sidebar-primary-foreground: #0A0F11;
|
|
41
|
-
--sidebar-accent: #202428;
|
|
42
|
-
--sidebar-accent-foreground: #F2F3F4;
|
|
43
|
-
--sidebar-border: rgba(163, 171, 169, 0.1);
|
|
44
|
-
--sidebar-ring: #ACC3B3;
|
|
45
|
-
|
|
46
|
-
/* Formant Brand Colors */
|
|
47
|
-
--deep-command: #0A0F11;
|
|
48
|
-
--slate-mist: #202428;
|
|
49
|
-
--formant-white: #F2F3F4;
|
|
50
|
-
--system-neutral: #A3ABA9;
|
|
51
|
-
--fog-green: #4B5E53;
|
|
52
|
-
--ethereal-teal: #2C4142;
|
|
53
|
-
--horizon-glow: #ACC3B3;
|
|
54
|
-
--terminal-amber: #E8AB7F;
|
|
55
|
-
--interface-iris: #8B8CF4;
|
|
56
|
-
|
|
57
|
-
/* Font families */
|
|
58
|
-
--font-heading: 'Space Grotesk', sans-serif;
|
|
59
|
-
--font-sans: 'Inter', sans-serif;
|
|
60
|
-
--font-mono: 'JetBrains Mono', monospace;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
* {
|
|
64
|
-
border-color: var(--border);
|
|
65
|
-
outline-color: var(--ring);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
body {
|
|
69
|
-
background-color: var(--background);
|
|
70
|
-
color: var(--foreground);
|
|
71
|
-
font-family: 'Inter', sans-serif;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
html {
|
|
75
|
-
font-family: 'Inter', sans-serif;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
h1, h2, h3, h4, h5, h6 {
|
|
79
|
-
font-family: 'Space Grotesk', sans-serif;
|
|
80
|
-
letter-spacing: -0.02em;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
code, pre, .font-mono {
|
|
84
|
-
font-family: 'JetBrains Mono', monospace;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
/* Formant Typography Utilities */
|
|
88
|
-
.font-heading {
|
|
89
|
-
font-family: 'Space Grotesk', sans-serif;
|
|
90
|
-
letter-spacing: -0.02em;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.font-sans {
|
|
94
|
-
font-family: 'Inter', sans-serif;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.font-mono {
|
|
98
|
-
font-family: 'JetBrains Mono', monospace;
|
|
99
|
-
letter-spacing: 0.02em;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
/* Formant Brand Color Utilities */
|
|
103
|
-
.bg-deep-command { background-color: #0A0F11; }
|
|
104
|
-
.bg-slate-mist { background-color: #202428; }
|
|
105
|
-
.bg-formant-white { background-color: #F2F3F4; }
|
|
106
|
-
.bg-system-neutral { background-color: #A3ABA9; }
|
|
107
|
-
.bg-fog-green { background-color: #4B5E53; }
|
|
108
|
-
.bg-ethereal-teal { background-color: #2C4142; }
|
|
109
|
-
.bg-horizon-glow { background-color: #ACC3B3; }
|
|
110
|
-
.bg-terminal-amber { background-color: #E8AB7F; }
|
|
111
|
-
.bg-interface-iris { background-color: #8B8CF4; }
|
|
112
|
-
|
|
113
|
-
/* Alpha variants */
|
|
114
|
-
.bg-fog-green\/10 { background-color: rgba(75, 94, 83, 0.1); }
|
|
115
|
-
.bg-fog-green\/20 { background-color: rgba(75, 94, 83, 0.2); }
|
|
116
|
-
.bg-fog-green\/30 { background-color: rgba(75, 94, 83, 0.3); }
|
|
117
|
-
.bg-fog-green\/40 { background-color: rgba(75, 94, 83, 0.4); }
|
|
118
|
-
.bg-ethereal-teal\/40 { background-color: rgba(44, 65, 66, 0.4); }
|
|
119
|
-
.bg-ethereal-teal\/60 { background-color: rgba(44, 65, 66, 0.6); }
|
|
120
|
-
.bg-terminal-amber\/10 { background-color: rgba(232, 171, 127, 0.1); }
|
|
121
|
-
.bg-terminal-amber\/25 { background-color: rgba(232, 171, 127, 0.25); }
|
|
122
|
-
.bg-terminal-amber\/80 { background-color: rgba(232, 171, 127, 0.8); }
|
|
123
|
-
.bg-interface-iris\/10 { background-color: rgba(139, 140, 244, 0.1); }
|
|
124
|
-
.bg-interface-iris\/25 { background-color: rgba(139, 140, 244, 0.25); }
|
|
125
|
-
|
|
126
|
-
.text-deep-command { color: #0A0F11; }
|
|
127
|
-
.text-slate-mist { color: #202428; }
|
|
128
|
-
.text-formant-white { color: #F2F3F4; }
|
|
129
|
-
.text-system-neutral { color: #A3ABA9; }
|
|
130
|
-
.text-fog-green { color: #4B5E53; }
|
|
131
|
-
.text-ethereal-teal { color: #2C4142; }
|
|
132
|
-
.text-horizon-glow { color: #ACC3B3; }
|
|
133
|
-
.text-terminal-amber { color: #E8AB7F; }
|
|
134
|
-
.text-interface-iris { color: #8B8CF4; }
|
|
135
|
-
|
|
136
|
-
.border-fog-green { border-color: rgba(75, 94, 83, 0.4); }
|
|
137
|
-
.border-fog-green\/40 { border-color: rgba(75, 94, 83, 0.4); }
|
|
138
|
-
.border-ethereal-teal\/60 { border-color: rgba(44, 65, 66, 0.6); }
|
|
139
|
-
.border-terminal-amber { border-color: rgba(232, 171, 127, 0.25); }
|
|
140
|
-
.border-terminal-amber\/20 { border-color: rgba(232, 171, 127, 0.2); }
|
|
141
|
-
.border-terminal-amber\/25 { border-color: rgba(232, 171, 127, 0.25); }
|
|
142
|
-
.border-interface-iris { border-color: rgba(139, 140, 244, 0.25); }
|
|
143
|
-
.border-interface-iris\/20 { border-color: rgba(139, 140, 244, 0.2); }
|
|
144
|
-
.border-interface-iris\/25 { border-color: rgba(139, 140, 244, 0.25); }
|
|
145
|
-
.border-system-neutral\/20 { border-color: rgba(163, 171, 169, 0.2); }
|
|
146
|
-
|
|
147
|
-
/* Formant Animation Utilities */
|
|
148
|
-
@keyframes fadeUp {
|
|
149
|
-
from {
|
|
150
|
-
opacity: 0;
|
|
151
|
-
transform: translateY(24px);
|
|
152
|
-
}
|
|
153
|
-
to {
|
|
154
|
-
opacity: 1;
|
|
155
|
-
transform: translateY(0);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.animate-fade-up {
|
|
160
|
-
animation: fadeUp 0.7s ease forwards;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
/* Formant Section Label Style */
|
|
164
|
-
.section-label {
|
|
165
|
-
font-family: 'JetBrains Mono', monospace;
|
|
166
|
-
font-size: 10px;
|
|
167
|
-
letter-spacing: 0.3em;
|
|
168
|
-
color: #E8AB7F;
|
|
169
|
-
text-transform: uppercase;
|
|
170
|
-
display: flex;
|
|
171
|
-
align-items: center;
|
|
172
|
-
gap: 12px;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.section-label::before {
|
|
176
|
-
content: '';
|
|
177
|
-
display: block;
|
|
178
|
-
width: 24px;
|
|
179
|
-
height: 1px;
|
|
180
|
-
background: #E8AB7F;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
/* Custom scrollbar for dark theme */
|
|
184
|
-
::-webkit-scrollbar {
|
|
185
|
-
width: 8px;
|
|
186
|
-
height: 8px;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
::-webkit-scrollbar-track {
|
|
190
|
-
background: #0A0F11;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
::-webkit-scrollbar-thumb {
|
|
194
|
-
background: #4B5E53;
|
|
195
|
-
border-radius: 4px;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
::-webkit-scrollbar-thumb:hover {
|
|
199
|
-
background: #ACC3B3;
|
|
200
|
-
}
|