diff --git a/app/components/ascii-preview.tsx b/app/components/ascii-preview.tsx
index 7df79ed..33ab591 100644
--- a/app/components/ascii-preview.tsx
+++ b/app/components/ascii-preview.tsx
@@ -331,7 +331,7 @@ export function AsciiPreview({
)}
- handleCustomColorSetChange(flipped ? 'backgroundColor' : 'textColor', val)
+ handleCustomColorSetChange(flipped ? 'textColor' : 'backgroundColor', val)
}
>
- {flipped ? 'BG color' : 'Text color'}
+ {flipped ? 'Text color' : 'BG color'}
-
- handleCustomColorSetChange(flipped ? 'textColor' : 'backgroundColor', val)
+ handleCustomColorSetChange(flipped ? 'backgroundColor' : 'textColor', val)
}
>
- {flipped ? 'Text color' : 'BG color'}
+ {flipped ? 'BG color' : 'Text color'}
diff --git a/app/templates.ts b/app/templates.ts
index f23ff23..decf84f 100644
--- a/app/templates.ts
+++ b/app/templates.ts
@@ -56,8 +56,8 @@ export const TEMPLATES = {
meta: { name: 'Sin' },
source: { data: null, code: sin },
animation: {
- animationLength: 900,
- frameRate: 15,
+ animationLength: 100,
+ frameRate: 30,
},
},
custom: { ...DEFAULT_SETTINGS, meta: { name: 'Custom Project' } },