Bin
2025-12-17 d616898802dfe7e5dd648bcf53c6d1f86b6d3642
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/* Empty State Base Styles */
.base {
  @apply w-full h-full flex flex-col items-center justify-center text-center;
}
 
.icon {
    @apply aspect-square p-tight;
}
 
.title {
    @apply text-center;
}
 
/* Size Styles */
 
/* Large Size - Data Manager style */
.size-large {
  @apply gap-tight;
 
  .icon {
    @apply mb-tight;
  }
 
  .description {
    @apply max-w-xl mb-tight;
  }
 
  .actions {
    @apply mt-base;
  }
 
  .footer {
    @apply mt-base;
  }
}
 
/* Medium Size - Home page style */
.size-medium {
  @apply gap-tight;
 
  .icon {
    @apply mb-tight;
  }
 
  .description {
    @apply max-w-lg;
  }
 
  .additional {
    @apply mt-base mb-tight;
  }
 
  .actions {
    @apply mt-base;
  }
 
  .footer {
    @apply mt-wide;
  }
}
 
/* Small Size - Sidepanel style */
.size-small {
  @apply gap-tighter;
 
  .icon {
    @apply mb-tighter;
  }
 
  .description {
    @apply text-center w-full;
  }
 
  /* Text container wrapper for title and description */
  .text-wrapper {
    @apply flex flex-col items-center w-full gap-tightest;
  }
 
  .additional {
    @apply mt-tight;
  }
 
  .actions {
    @apply mt-base;
  }
 
  .footer {
    @apply pt-tight mt-tight;
  }
}
 
/* Actions Sizes - different max widths for different sizes */
.actions-large {
  @apply max-w-lg;
}
 
.actions-medium {
  @apply max-w-md;
}
 
.actions-small {
  @apply max-w-sm;
}
 
/* Color Variants */
 
/* Primary Variant - Blue theme */
.variant-primary {
  .icon {
    @apply bg-primary-emphasis text-primary-icon;
  }
}
 
/* Neutral Variant - Gray theme */
.variant-neutral {
  .icon {
    @apply bg-neutral-emphasis text-neutral-icon;
  }
}
 
/* Negative Variant - Red theme */
.variant-negative {
  .icon {
    @apply bg-negative-emphasis text-negative-icon;
  }
}
 
/* Positive Variant - Green theme */
.variant-positive {
  .icon {
    @apply bg-positive-emphasis text-positive-icon;
  }
}
 
/* Warning Variant - Orange/Yellow theme */
.variant-warning {
  .icon {
    @apply bg-warning-emphasis text-warning-icon;
  }
}
 
/* Gradient Variant - AI theme with gradient and animation */
.variant-gradient {
  .icon {
    background: linear-gradient(109deg, var(--color-accent-canteloupe-base) 0%, var(--color-accent-persimmon-base) 51.56%, var(--color-accent-plum-base) 100%), var(--color-accent-grape-subtle);
    box-shadow: 0 0 16px 0 rgb(255 166 99 / 50%), 0 0 48px 0 rgb(255 117 87 / 60%), 0 0 128px 0 rgb(227 123 211 / 50%);
    animation: pulsate 4s infinite;
 
    @apply text-neutral-on-dark-content;
  }
}
 
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
 
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
 
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
 
/* Element Styles - All styling is handled by variants and utility classes */