@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deepgram/styles",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Tailwind-based design system and styles library for Deepgram design system and demos",
5
5
  "author": "Deepgram",
6
6
  "license": "MIT",
@@ -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": "#201cff",
16
+ "dg-secondary": "#149afb",
17
17
 
18
18
  // Background Colors
19
- "dg-background": "#0b0b0c",
20
- "dg-modal-background": "#1a1a1f",
21
- "dg-card-background": "#1a1a1f",
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 & Text
23
+ // Border Colors
25
24
  "dg-border": "#2c2c33",
26
- "dg-text": "#fbfbff",
27
- "dg-muted": "#949498",
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",