File size: 3,345 Bytes
5ca475a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import type { CompositionPreset } from '@/types';
import { 
    LayoutRandomIcon,
    LayoutImpactoIcon,
    LayoutDegradeIcon,
    LayoutContornoIcon,
    LayoutLegivelIcon,
    LayoutVerticalIcon,
    OutlineWhiteIcon
} from '@/components/icons';

export const compositionPresets: CompositionPreset[] = [
    {
        id: 'random',
        name: 'Aleatório',
        icon: LayoutRandomIcon,
        config: { // Config is a placeholder, logic is handled in the component
            style: { name: 'fill-stroke', palette: 'light' }, 
            rotation: true, 
            subtitle: true 
        }
    },
    {
        id: 'impacto-light',
        name: 'Impacto (Claro)',
        icon: LayoutImpactoIcon,
        config: {
            style: { name: 'fill-stroke', palette: 'light' },
            rotation: true,
            subtitle: true
        }
    },
    {
        id: 'impacto-dark',
        name: 'Impacto (Escuro)',
        icon: LayoutImpactoIcon,
        config: {
            style: { name: 'fill-stroke', palette: 'dark' },
            rotation: true,
            subtitle: true
        }
    },
    {
        id: 'impacto-vibrant',
        name: 'Impacto (Vibrante)',
        icon: LayoutImpactoIcon,
        config: {
            style: { name: 'fill-stroke', palette: 'complementary' },
            rotation: true,
            subtitle: true
        }
    },
    {
        id: 'impacto-contorno-branco',
        name: 'Impacto (Contorno Branco)',
        icon: OutlineWhiteIcon,
        config: {
            style: {
                name: 'fill-stroke',
                palette: 'dark',
                forcedStroke: 'white',
            },
            rotation: true,
            subtitle: true
        }
    },
    {
        id: 'legivel-light',
        name: 'Legível (Fundo Escuro)',
        icon: LayoutLegivelIcon,
        config: {
            style: {
                name: 'fill',
                palette: 'light',
                background: { color: 'rgba(0, 0, 0, 0.5)', padding: 0.2 }
            },
            rotation: false,
            subtitle: true
        }
    },
    {
        id: 'legivel-dark',
        name: 'Legível (Fundo Claro)',
        icon: LayoutLegivelIcon,
        config: {
            style: {
                name: 'fill',
                palette: 'dark',
                background: { color: 'rgba(255, 255, 255, 0.6)', padding: 0.2 }
            },
            rotation: false,
            subtitle: true
        }
    },
    {
        id: 'degrade',
        name: 'Degradê',
        icon: LayoutDegradeIcon,
        config: {
            style: {
                name: 'gradient-on-block',
                palette: 'complementary',
                background: { color: 'rgba(0, 0, 0, 0.4)', padding: 0.15 }
            },
            rotation: false,
            subtitle: true
        }
    },
    {
        id: 'contorno',
        name: 'Contorno',
        icon: LayoutContornoIcon,
        config: {
            style: { name: 'stroke', palette: 'light' },
            rotation: false,
            subtitle: true
        }
    },
    {
        id: 'vertical',
        name: 'Vertical',
        icon: LayoutVerticalIcon,
        config: {
            style: { name: 'vertical', palette: 'light' },
            rotation: false,
            subtitle: false
        }
    },
];