chore: checkpoint before block builder refactor

This commit is contained in:
2026-04-03 23:03:09 +02:00
parent 330950cc6e
commit 4f3fefca5c
14 changed files with 315 additions and 99 deletions

View File

@@ -11,9 +11,24 @@ export default {
theme: {
extend: {
colors: {
festival: {
DEFAULT: '#f06c05',
dark: '#f06c05',
},
},
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
keyframes: {
'preregister-in': {
from: { opacity: '0', transform: 'translateY(1rem)' },
to: { opacity: '1', transform: 'translateY(0)' },
},
},
animation: {
'preregister-in': 'preregister-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards',
},
},
},