@firecms/ui 3.0.0-tw4.2 → 3.0.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/dist/index.css CHANGED
@@ -1,57 +1,3 @@
1
- @theme {
2
- /* Font Families */
3
- --font-sans: 'Rubik', 'Roboto', 'Helvetica', 'Arial', sans-serif;
4
- --font-headers: 'Rubik', 'Roboto', 'Helvetica', 'Arial', sans-serif;
5
- --font-mono: 'JetBrains Mono', 'Space Mono', 'Lucida Console', monospace;
6
-
7
- /* Colors */
8
- --color-primary: #0070F4;
9
- --color-primary-light: oklch(from var(--color-primary) calc(l + 0.15) c h);
10
- --color-primary-dark: oklch(from var(--color-primary) calc(l - 0.15) c h);
11
- --color-secondary: #FF5B79;
12
- --color-secondary-light: oklch(from var(--color-secondary) calc(l + 0.15) c h);
13
- --color-secondary-dark: oklch(from var(--color-secondary) calc(l - 0.15) c h);
14
-
15
- /* Field Colors */
16
- --color-field-disabled: rgb(224 224 226);
17
- --color-field-disabled-dark: rgb(35 35 37);
18
-
19
- /* Text Colors */
20
- --color-text-primary: rgba(0, 0, 0, 0.87);
21
- --color-text-secondary: rgba(0, 0, 0, 0.52);
22
- --color-text-disabled: rgba(0, 0, 0, 0.38);
23
- --color-text-primary-dark: #ffffff;
24
- --color-text-secondary-dark: rgba(255, 255, 255, 0.6);
25
- --color-text-disabled-dark: rgba(255, 255, 255, 0.48);
26
-
27
- /* Surface Colors */
28
- --color-surface-50: #f8f8fc;
29
- --color-surface-100: #e7e7eb;
30
- --color-surface-200: #cfcfd6;
31
- --color-surface-300: #b7b7bf;
32
- --color-surface-400: #a0a0a9;
33
- --color-surface-500: #87878f;
34
- --color-surface-600: #6b6b74;
35
- --color-surface-700: #454552;
36
- --color-surface-800: #292934;
37
- --color-surface-900: #18181c;
38
- --color-surface-950: #101013;
39
-
40
- /* Surface Accent Colors */
41
- --color-surface-accent-50: #f8fafc;
42
- --color-surface-accent-100: #f1f5f9;
43
- --color-surface-accent-200: #e2e8f0;
44
- --color-surface-accent-300: #cbd5e1;
45
- --color-surface-accent-400: #94a3b8;
46
- --color-surface-accent-500: #64748b;
47
- --color-surface-accent-600: #475569;
48
- --color-surface-accent-700: #334155;
49
- --color-surface-accent-800: #1e293b;
50
- --color-surface-accent-900: #0f172a;
51
- --color-surface-accent-950: #020617;
52
- }
53
-
54
-
55
1
  /* Chrome, Safari and Opera */
56
2
  .no-scrollbar::-webkit-scrollbar {
57
3
  display: none;
@@ -117,7 +63,12 @@
117
63
  @apply text-sm font-semibold uppercase;
118
64
  }
119
65
 
66
+
120
67
  :focus-visible {
121
- @apply outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-transparent
68
+ @apply outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-opacity-75 focus-visible:ring-offset-2 focus-visible:ring-offset-transparent
69
+ }
70
+
71
+ a {
72
+ @apply text-blue-600 dark:text-blue-400 dark:hover:text-blue-600 hover:text-blue-800
122
73
  }
123
74