-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
116 lines (107 loc) · 3.59 KB
/
Copy pathindex.css
File metadata and controls
116 lines (107 loc) · 3.59 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap');
@config "../tailwind.config.js";
@custom-variant dark (&:is(.dark *));
/* Material Symbols: @font-face lives in icons.css (kept out of this bundle for Tailwind v4 tooling). */
@layer base {
:root {
--font-size: 16px;
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
--card: 0 0% 100%;
--card-foreground: 222.2 84% 4.9%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 84% 4.9%;
--primary: 253 91% 64%;
--primary-foreground: 0 0% 100%;
--secondary: 210 40% 96.1%;
--secondary-foreground: 222.2 47.4% 11.2%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
--accent: 210 40% 96.1%;
--accent-foreground: 222.2 47.4% 11.2%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 210 40% 98%;
--success: 152 69% 31%;
--success-foreground: 144 100% 95%;
--warning: 38 92% 50%;
--warning-foreground: 48 96% 89%;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
--input-background: #f3f3f5;
--switch-background: #cbced4;
--ring: 253 91% 64%;
--radius: 0.625rem;
--font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
/* Message Gateway Theme - Light */
--color-primary-brand: #4f46e5;
--color-primary-brand-hover: #4338ca;
--color-text-primary: #111827;
--color-text-secondary: #4b5563;
--color-text-tertiary: #9ca3af;
--color-text-placeholder: #9ca3af;
--color-surface: #ffffff;
--color-surface-hover: #f3f4f6;
--color-divider: #e5e7eb;
--color-secondary-button: #f9fafb;
--color-secondary-button-hover: #f3f4f6;
--shadow-card: 0px 8px 12px rgba(0, 0, 0, 0.06);
--color-success: #10b981;
--color-success-bg: #d1fae5;
--color-warning: #f59e0b;
--color-warning-bg: #fef3c7;
}
.dark {
--background: 222.9 38.9% 7.1%;
--foreground: 210 40% 98%;
--card: 220 33.3% 14.1%;
--card-foreground: 210 40% 98%;
--popover: 220 33.3% 14.1%;
--popover-foreground: 210 40% 98%;
--primary: 253 91% 64%;
--primary-foreground: 0 0% 100%;
--secondary: 217.2 32.6% 17.5%;
--secondary-foreground: 210 40% 98%;
--muted: 220 25% 18%;
--muted-foreground: 215 20.2% 65.1%;
--accent: 217.2 32.6% 17.5%;
--accent-foreground: 210 40% 98%;
--success: 152 69% 31%;
--success-foreground: 144 100% 95%;
--warning: 38 92% 50%;
--warning-foreground: 48 96% 89%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 85.8% 85.5%;
--border: 217.2 32.6% 17.5%;
--input: 217.2 32.6% 17.5%;
--ring: 253 91% 64%;
/* Message Gateway Theme - Dark */
--color-primary-brand: #4f46e5;
--color-primary-brand-hover: #6366f1;
--color-text-primary: #ffffff;
--color-text-secondary: #9ca3af;
--color-text-tertiary: #6b7280;
--color-text-placeholder: #6b7280;
--color-surface: #111827;
--color-surface-hover: #1f2937;
--color-divider: #374151;
--color-secondary-button: #111827;
--color-secondary-button-hover: #1f2937;
--shadow-card: 0px 8px 12px rgba(0, 0, 0, 0.4);
--color-success: #10b981;
--color-success-bg: #065f46;
--color-warning: #f59e0b;
--color-warning-bg: #78350f;
}
html {
font-size: var(--font-size);
}
* {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground antialiased;
font-family: var(--font-sans);
}
}