Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configurator/src/components/inputs/SliderRow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
{:else}
<RangeWithNumber {value} {min} {max} {step} {unit} {onChange} />
{#if rawDefault && !overridden}
<p class="text-[9px] font-mono text-slate-300 dark:text-slate-700 mt-0.5 leading-none">default: {rawDefault}</p>
<p class="text-[9px] font-mono text-slate-300 dark:text-slate-400 mt-0.5 leading-none">default: {rawDefault}</p>
{/if}
{/if}

Expand Down
2 changes: 1 addition & 1 deletion configurator/src/components/panels/CheatsheetPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
type="search"
bind:value={query}
placeholder="Search classes, tokens, descriptions…"
class="w-full bg-black/5 dark:bg-white/5 border border-black/10 dark:border-white/10 rounded-lg px-3 py-2 text-[11px] text-slate-800 dark:text-slate-200 placeholder:text-slate-600 focus:outline-none focus:border-indigo-500"
class="w-full bg-black/5 dark:bg-white/5 border border-black/10 dark:border-white/10 rounded-lg px-3 py-2 text-[11px] text-slate-800 dark:text-slate-200 placeholder:text-slate-600 dark:placeholder:text-slate-400 focus:outline-none focus:border-indigo-500"
/>
<!-- Tab switcher -->
<div class="flex bg-black/4 dark:bg-white/4 border border-black/8 dark:border-white/8 rounded-lg p-0.5 gap-0.5">
Expand Down
2 changes: 1 addition & 1 deletion configurator/src/components/panels/HomePanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
bind:value={newName}
placeholder="Save current as…"
onkeydown={(e) => { if (e.key === "Enter") handleQuickSave(); }}
class="flex-1 min-w-0 bg-black/5 dark:bg-white/5 border border-black/10 dark:border-white/10 rounded-lg px-2 py-1.5 text-[11px] text-slate-800 dark:text-slate-200 placeholder:text-slate-600 focus:outline-none focus:border-indigo-500"
class="flex-1 min-w-0 bg-black/5 dark:bg-white/5 border border-black/10 dark:border-white/10 rounded-lg px-2 py-1.5 text-[11px] text-slate-800 dark:text-slate-200 placeholder:text-slate-600 dark:placeholder:text-slate-400 focus:outline-none focus:border-indigo-500"
/>
<button
onclick={handleQuickSave}
Expand Down
4 changes: 2 additions & 2 deletions configurator/src/components/panels/ThemesPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
bind:value={newName}
placeholder="Theme name"
onkeydown={(e) => { if (e.key === "Enter") handleSave(); }}
class="flex-1 min-w-0 bg-black/5 dark:bg-white/5 border border-black/10 dark:border-white/10 rounded-lg px-2 py-1.5 text-[11px] text-slate-800 dark:text-slate-200 placeholder:text-slate-600 focus:outline-none focus:border-indigo-500"
class="flex-1 min-w-0 bg-black/5 dark:bg-white/5 border border-black/10 dark:border-white/10 rounded-lg px-2 py-1.5 text-[11px] text-slate-800 dark:text-slate-200 placeholder:text-slate-600 dark:placeholder:text-slate-400 focus:outline-none focus:border-indigo-500"
/>
<button
onclick={handleSave}
Expand All @@ -74,7 +74,7 @@
<div class="space-y-2">
{#if themes.length === 0}
<div class="rounded-xl border border-dashed border-black/10 dark:border-white/10 p-6 text-center">
<p class="text-[11px] text-slate-500">No saved themes yet.</p>
<p class="text-[11px] text-slate-500 dark:text-slate-400">No saved themes yet.</p>
<p class="text-[10px] text-slate-400 dark:text-slate-600 mt-1">Configure your tokens, then save them above.</p>
</div>
{:else}
Expand Down