@deepgram/styles 0.0.1 → 0.0.3
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 +301 -48
- package/dist/deepgram.css +2 -1595
- package/dist/deepgram.expanded.css +1753 -7
- package/lib/deepgram.css +608 -221
- package/package.json +1 -1
- package/tailwind.config.js +18 -8
package/package.json
CHANGED
package/tailwind.config.js
CHANGED
|
@@ -13,18 +13,28 @@ module.exports = {
|
|
|
13
13
|
colors: {
|
|
14
14
|
// Deepgram Brand Colors (from marketing site)
|
|
15
15
|
"dg-primary": "#13ef95",
|
|
16
|
-
"dg-secondary": "#
|
|
16
|
+
"dg-secondary": "#149afb",
|
|
17
17
|
|
|
18
18
|
// Background Colors
|
|
19
|
-
"dg-background": "#0b0b0c",
|
|
20
|
-
"dg-
|
|
21
|
-
"dg-
|
|
22
|
-
"dg-translucent-background": "#00000080",
|
|
19
|
+
"dg-background": "#0b0b0c", // Black
|
|
20
|
+
"dg-charcoal": "#1a1a1f", // Charcoal (cards, modals)
|
|
21
|
+
"dg-translucent": "rgba(0, 0, 0, 0.5)",
|
|
23
22
|
|
|
24
|
-
// Border
|
|
23
|
+
// Border Colors
|
|
25
24
|
"dg-border": "#2c2c33",
|
|
26
|
-
"dg-
|
|
27
|
-
"dg-
|
|
25
|
+
"dg-pebble": "#4e4e52", // Pebble (default borders)
|
|
26
|
+
"dg-slate": "#949498", // Slate (muted borders)
|
|
27
|
+
|
|
28
|
+
// Text Colors
|
|
29
|
+
"dg-text": "#fbfbff", // Ghost White (primary text)
|
|
30
|
+
"dg-fog": "#edede2", // Fog Gray (secondary text)
|
|
31
|
+
"dg-platinum": "#e1e1e5", // Platinum (tertiary text)
|
|
32
|
+
"dg-muted": "#949498", // Slate (muted text)
|
|
33
|
+
|
|
34
|
+
// Status Colors
|
|
35
|
+
"dg-success": "#12b76a",
|
|
36
|
+
"dg-warning": "#fec84b",
|
|
37
|
+
"dg-danger": "#f04438",
|
|
28
38
|
|
|
29
39
|
// Gradient colors for primary button
|
|
30
40
|
"dg-gradient-start": "#008fc1",
|