feat: custom theme

This commit is contained in:
2026-01-10 05:15:42 +02:00
parent 6286672fa5
commit ccf76a5616
13 changed files with 644 additions and 17 deletions

View File

@@ -31,9 +31,9 @@
}
.vega-bindings:not(:empty) {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
background: var(--color-background, #f5f3f0);
border: 1px solid rgba(45, 42, 38, 0.2);
border-radius: 0;
padding: 15px 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
width: fit-content;
@@ -44,28 +44,28 @@
align-items: center;
gap: 10px;
margin-right: 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 14px;
color: #495057;
color: var(--color-text, #2d2a26);
font-weight: 500;
}
.vega-bindings input,
.vega-bindings select {
padding: 6px 12px;
border: 1px solid #ced4da;
border-radius: 4px;
border: 1px solid rgba(45, 42, 38, 0.2);
border-radius: 0;
background: white;
font-size: 14px;
color: #495057;
color: var(--color-text, #2d2a26);
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.vega-bindings input:focus,
.vega-bindings select:focus {
border-color: #80bdff;
border-color: var(--color-primary-blue, #1789fc);
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
box-shadow: 0 0 0 0.2rem rgba(23, 137, 252, 0.25);
}
.vega-bindings select {