@jjlmoya/utils-creative 1.5.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +62 -62
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/bead-pattern-generator/component.astro +29 -21
- package/src/tool/bead-pattern-generator/i18n/en.ts +73 -19
- package/src/tool/bead-pattern-generator/i18n/es.ts +73 -19
- package/src/tool/bead-pattern-generator/i18n/fr.ts +73 -19
- package/src/tool/bead-pattern-generator/index.ts +14 -2
- package/src/tool/dice-roller/component.astro +42 -30
- package/src/tool/dice-roller/i18n/en.ts +84 -33
- package/src/tool/dice-roller/i18n/es.ts +84 -33
- package/src/tool/dice-roller/i18n/fr.ts +84 -33
- package/src/tool/dice-roller/index.ts +9 -0
- package/src/tool/excuse-generator/i18n/en.ts +60 -18
- package/src/tool/excuse-generator/i18n/es.ts +60 -18
- package/src/tool/excuse-generator/i18n/fr.ts +60 -18
- package/src/tool/fortune-cookie/component.astro +27 -16
- package/src/tool/fortune-cookie/i18n/en.ts +60 -18
- package/src/tool/fortune-cookie/i18n/es.ts +60 -18
- package/src/tool/fortune-cookie/i18n/fr.ts +60 -18
- package/src/tool/synesthesia-painter/component.astro +5 -5
- package/src/tool/synesthesia-painter/i18n/en.ts +74 -32
- package/src/tool/synesthesia-painter/i18n/es.ts +74 -32
- package/src/tool/synesthesia-painter/i18n/fr.ts +74 -32
- package/src/tool/zalgo-generator/component.astro +29 -18
- package/src/tool/zalgo-generator/i18n/en.ts +70 -17
- package/src/tool/zalgo-generator/i18n/es.ts +70 -17
- package/src/tool/zalgo-generator/i18n/fr.ts +70 -17
- package/src/tool/zalgo-generator/index.ts +11 -0
- package/src/tools.ts +14 -1
|
@@ -1,9 +1,63 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { FortuneCookieLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'galleta-fortuna';
|
|
5
|
+
const title = 'Galleta de la Fortuna';
|
|
6
|
+
const description = 'Consulta tu destino diario y descubre tus números de la suerte. Una fortuna al día, revelada con un clic.';
|
|
7
|
+
|
|
8
|
+
const faq: FortuneCookieLocaleContent['faq'] = [
|
|
9
|
+
{
|
|
10
|
+
question: '¿Puedo abrir más de una galleta al día?',
|
|
11
|
+
answer: 'El destino solo habla una vez al día. Guardamos tu fortuna en el dispositivo para que sea tu guía durante la jornada.'
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: '¿Las fortunas se generan aleatoriamente?',
|
|
15
|
+
answer: 'Sí: se selecciona una fortuna aleatoria cada día y se guarda localmente. Las 25 fortunas tienen la misma probabilidad de ser elegidas, asegurando variedad con el tiempo.'
|
|
16
|
+
}
|
|
17
|
+
];
|
|
18
|
+
|
|
19
|
+
const howTo: FortuneCookieLocaleContent['howTo'] = [
|
|
20
|
+
{ name: 'Golpear', text: 'Haz clic varias veces sobre la galleta para romperla.' },
|
|
21
|
+
{ name: 'Leer', text: 'Descubre el mensaje oculto en su interior y tus números de la suerte.' }
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
25
|
+
'@context': 'https://schema.org',
|
|
26
|
+
'@type': 'FAQPage',
|
|
27
|
+
mainEntity: faq.map((item) => ({
|
|
28
|
+
'@type': 'Question',
|
|
29
|
+
name: item.question,
|
|
30
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
31
|
+
})),
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const howToSchema: WithContext<HowTo> = {
|
|
35
|
+
'@context': 'https://schema.org',
|
|
36
|
+
'@type': 'HowTo',
|
|
37
|
+
name: title,
|
|
38
|
+
description,
|
|
39
|
+
step: howTo.map((step) => ({
|
|
40
|
+
'@type': 'HowToStep',
|
|
41
|
+
name: step.name,
|
|
42
|
+
text: step.text,
|
|
43
|
+
})),
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
47
|
+
'@context': 'https://schema.org',
|
|
48
|
+
'@type': 'SoftwareApplication',
|
|
49
|
+
name: title,
|
|
50
|
+
description,
|
|
51
|
+
applicationCategory: 'UtilitiesApplication',
|
|
52
|
+
operatingSystem: 'Web',
|
|
53
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
54
|
+
inLanguage: 'es',
|
|
55
|
+
};
|
|
56
|
+
|
|
3
57
|
export const content: FortuneCookieLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
58
|
+
slug,
|
|
59
|
+
title,
|
|
60
|
+
description,
|
|
7
61
|
faqTitle: 'Preguntas Frecuentes',
|
|
8
62
|
bibliographyTitle: 'Bibliografía del Destino',
|
|
9
63
|
ui: {
|
|
@@ -69,22 +123,10 @@ export const content: FortuneCookieLocaleContent = {
|
|
|
69
123
|
{ pro: 'Completamente privado, sin datos enviados al servidor', con: 'Solo una fortuna al día (¡diseño intencionado!)' },
|
|
70
124
|
]},
|
|
71
125
|
],
|
|
72
|
-
faq
|
|
73
|
-
{
|
|
74
|
-
question: '¿Puedo abrir más de una galleta al día?',
|
|
75
|
-
answer: 'El destino solo habla una vez al día. Guardamos tu fortuna en el dispositivo para que sea tu guía durante la jornada.'
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
question: '¿Las fortunas se generan aleatoriamente?',
|
|
79
|
-
answer: 'Sí: se selecciona una fortuna aleatoria cada día y se guarda localmente. Las 25 fortunas tienen la misma probabilidad de ser elegidas, asegurando variedad con el tiempo.'
|
|
80
|
-
}
|
|
81
|
-
],
|
|
126
|
+
faq,
|
|
82
127
|
bibliography: [
|
|
83
128
|
{ name: 'Historia de la Galleta de la Fortuna', url: 'https://es.wikipedia.org/wiki/Galleta_de_la_fortuna' }
|
|
84
129
|
],
|
|
85
|
-
howTo
|
|
86
|
-
|
|
87
|
-
{ name: 'Leer', text: 'Descubre el mensaje oculto en su interior y tus números de la suerte.' }
|
|
88
|
-
],
|
|
89
|
-
schemas: []
|
|
130
|
+
howTo,
|
|
131
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
90
132
|
};
|
|
@@ -1,9 +1,63 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { FortuneCookieLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'biscuit-de-la-fortune';
|
|
5
|
+
const title = 'Biscuit de la Fortune';
|
|
6
|
+
const description = 'Consultez votre destin quotidien et découvrez vos numéros de chance. Un biscuit par jour, révélé d\'un simple clic.';
|
|
7
|
+
|
|
8
|
+
const faq: FortuneCookieLocaleContent['faq'] = [
|
|
9
|
+
{
|
|
10
|
+
question: 'Puis-je ouvrir plus d\'un biscuit par jour ?',
|
|
11
|
+
answer: 'Le destin ne parle qu\'une fois par jour. Nous enregistrons votre fortune sur l\'appareil pour qu\'elle vous guide tout au long de la journée.'
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: 'Les fortunes sont-elles générées aléatoirement ?',
|
|
15
|
+
answer: 'Oui — une fortune aléatoire est sélectionnée chaque jour et sauvegardée localement. Chacune des 25 fortunes a une chance égale d\'être choisie, garantissant une variété au fil du temps.'
|
|
16
|
+
}
|
|
17
|
+
];
|
|
18
|
+
|
|
19
|
+
const howTo: FortuneCookieLocaleContent['howTo'] = [
|
|
20
|
+
{ name: 'Casser le biscuit', text: 'Cliquez de façon répétée sur le biscuit pour l\'ouvrir.' },
|
|
21
|
+
{ name: 'Lire votre fortune', text: 'Découvrez le message caché à l\'intérieur et vos numéros de chance pour la journée.' }
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
25
|
+
'@context': 'https://schema.org',
|
|
26
|
+
'@type': 'FAQPage',
|
|
27
|
+
mainEntity: faq.map((item) => ({
|
|
28
|
+
'@type': 'Question',
|
|
29
|
+
name: item.question,
|
|
30
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
31
|
+
})),
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const howToSchema: WithContext<HowTo> = {
|
|
35
|
+
'@context': 'https://schema.org',
|
|
36
|
+
'@type': 'HowTo',
|
|
37
|
+
name: title,
|
|
38
|
+
description,
|
|
39
|
+
step: howTo.map((step) => ({
|
|
40
|
+
'@type': 'HowToStep',
|
|
41
|
+
name: step.name,
|
|
42
|
+
text: step.text,
|
|
43
|
+
})),
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
47
|
+
'@context': 'https://schema.org',
|
|
48
|
+
'@type': 'SoftwareApplication',
|
|
49
|
+
name: title,
|
|
50
|
+
description,
|
|
51
|
+
applicationCategory: 'UtilitiesApplication',
|
|
52
|
+
operatingSystem: 'Web',
|
|
53
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
54
|
+
inLanguage: 'fr',
|
|
55
|
+
};
|
|
56
|
+
|
|
3
57
|
export const content: FortuneCookieLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
58
|
+
slug,
|
|
59
|
+
title,
|
|
60
|
+
description,
|
|
7
61
|
faqTitle: 'Questions Fréquemment Posées',
|
|
8
62
|
bibliographyTitle: 'Bibliographie du Destin',
|
|
9
63
|
ui: {
|
|
@@ -64,22 +118,10 @@ export const content: FortuneCookieLocaleContent = {
|
|
|
64
118
|
{ value: '1/jour', label: 'Un destin par jour', icon: 'mdi:calendar-today' },
|
|
65
119
|
], columns: 4 },
|
|
66
120
|
],
|
|
67
|
-
faq
|
|
68
|
-
{
|
|
69
|
-
question: 'Puis-je ouvrir plus d\'un biscuit par jour ?',
|
|
70
|
-
answer: 'Le destin ne parle qu\'une fois par jour. Nous enregistrons votre fortune sur l\'appareil pour qu\'elle vous guide tout au long de la journée.'
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
question: 'Les fortunes sont-elles générées aléatoirement ?',
|
|
74
|
-
answer: 'Oui — une fortune aléatoire est sélectionnée chaque jour et sauvegardée localement. Chacune des 25 fortunes a une chance égale d\'être choisie, garantissant une variété au fil du temps.'
|
|
75
|
-
}
|
|
76
|
-
],
|
|
121
|
+
faq,
|
|
77
122
|
bibliography: [
|
|
78
123
|
{ name: 'Histoire du Fortune Cookie', url: 'https://en.wikipedia.org/wiki/Fortune_cookie' }
|
|
79
124
|
],
|
|
80
|
-
howTo
|
|
81
|
-
|
|
82
|
-
{ name: 'Lire votre fortune', text: 'Découvrez le message caché à l\'intérieur et vos numéros de chance pour la journée.' }
|
|
83
|
-
],
|
|
84
|
-
schemas: []
|
|
125
|
+
howTo,
|
|
126
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
85
127
|
};
|
|
@@ -282,7 +282,7 @@ const { ui } = Astro.props;
|
|
|
282
282
|
color: #ef4444;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
.synesthesia-painter-char {
|
|
285
|
+
:global(.synesthesia-painter-char) {
|
|
286
286
|
display: inline-block;
|
|
287
287
|
color: var(--char-color);
|
|
288
288
|
transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -301,7 +301,7 @@ const { ui } = Astro.props;
|
|
|
301
301
|
}
|
|
302
302
|
}
|
|
303
303
|
|
|
304
|
-
.synesthesia-painter-viz-layer.dots .synesthesia-painter-char {
|
|
304
|
+
:global(.synesthesia-painter-viz-layer.dots .synesthesia-painter-char) {
|
|
305
305
|
color: transparent;
|
|
306
306
|
font-size: 0;
|
|
307
307
|
width: 1rem;
|
|
@@ -312,17 +312,17 @@ const { ui } = Astro.props;
|
|
|
312
312
|
box-shadow: 0 0 8px var(--char-color);
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
.synesthesia-painter-viz-layer.aura .synesthesia-painter-char {
|
|
315
|
+
:global(.synesthesia-painter-viz-layer.aura .synesthesia-painter-char) {
|
|
316
316
|
color: rgba(255, 255, 255, 0.15);
|
|
317
317
|
text-shadow: 0 0 18px var(--char-color), 0 0 36px var(--char-color);
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
:global(.theme-dark
|
|
320
|
+
:global(.theme-dark .synesthesia-painter-viz-layer.aura .synesthesia-painter-char) {
|
|
321
321
|
color: rgba(255, 255, 255, 0.85);
|
|
322
322
|
text-shadow: 0 0 14px var(--char-color), 0 0 28px var(--char-color), 0 0 56px var(--char-color);
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
-
.synesthesia-painter-cursor {
|
|
325
|
+
:global(.synesthesia-painter-cursor) {
|
|
326
326
|
display: inline-block;
|
|
327
327
|
width: 2px;
|
|
328
328
|
height: 2.5rem;
|
|
@@ -1,9 +1,77 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { SynesthesiaPainterLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'synesthesia-painter';
|
|
5
|
+
const title = 'Synesthesia Painter';
|
|
6
|
+
const description = 'Visualize the color of words according to grapheme-color synesthesia. Each letter has its own color, turning text into chromatic art.';
|
|
7
|
+
|
|
8
|
+
const faq: SynesthesiaPainterLocaleContent['faq'] = [
|
|
9
|
+
{
|
|
10
|
+
question: 'Do all synesthetes see the same colors for each letter?',
|
|
11
|
+
answer: 'No. Synesthetic colors are unique to each person. Statistical tendencies exist (A tends to be red for many), but no two synesthetes have exactly the same palette. This tool uses the colors most frequently reported in population studies, not the "correct" ones.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: 'Can I develop synesthesia by using this tool continuously?',
|
|
15
|
+
answer: 'Not in the strict neurological sense. Genuine synesthesia is a characteristic of the nervous system, not a learned skill. However, repeated use of color-letter associations can create strong associative memories. Some studies suggest that practicing these associations can improve text memory.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'What is the "Aura" mode for?',
|
|
19
|
+
answer: 'Aura mode simulates how some synesthetes describe seeing colors "floating" or "glowing" around letters rather than integrated into them. It creates a more atmospheric and immersive visual experience, especially on a dark background.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Does the "Dots" mode have any scientific basis?',
|
|
23
|
+
answer: 'It is an artistic abstraction. It reduces the text to its "chromatic essence" by eliminating the recognizable shape of the letters. The result resembles chromatic data visualizations or pointillist paintings, and allows you to see the "color signature" of a text without meaning interfering.',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
question: 'Why are some letters like I and O white or black?',
|
|
27
|
+
answer: 'In synesthesia studies, the vowels I and O, and the letter W, are frequently described as white, transparent, or black. This tool adapts those colors to the active background: white on dark background, black on light background, to always guarantee visibility.',
|
|
28
|
+
},
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
const howTo: SynesthesiaPainterLocaleContent['howTo'] = [
|
|
32
|
+
{ name: 'Write text', text: 'Click the writing area and start typing. Each letter will appear colored according to its statistical synesthetic association.' },
|
|
33
|
+
{ name: 'Change visualization mode', text: 'Use the buttons in the top right corner to switch between Letters (colored text), Dots (color circles), and Aura (luminous letters with chromatic halos).' },
|
|
34
|
+
{ name: 'Explore different texts', text: 'Write names, words in different languages, or sentences to discover their unique chromatic palette. Long words create fascinating visual gradients.' },
|
|
35
|
+
{ name: 'Clear and start again', text: 'Use the "Clear" button in the bottom bar to wipe the canvas and explore a new text.' },
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
39
|
+
'@context': 'https://schema.org',
|
|
40
|
+
'@type': 'FAQPage',
|
|
41
|
+
mainEntity: faq.map((item) => ({
|
|
42
|
+
'@type': 'Question',
|
|
43
|
+
name: item.question,
|
|
44
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
45
|
+
})),
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const howToSchema: WithContext<HowTo> = {
|
|
49
|
+
'@context': 'https://schema.org',
|
|
50
|
+
'@type': 'HowTo',
|
|
51
|
+
name: title,
|
|
52
|
+
description,
|
|
53
|
+
step: howTo.map((step) => ({
|
|
54
|
+
'@type': 'HowToStep',
|
|
55
|
+
name: step.name,
|
|
56
|
+
text: step.text,
|
|
57
|
+
})),
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
61
|
+
'@context': 'https://schema.org',
|
|
62
|
+
'@type': 'SoftwareApplication',
|
|
63
|
+
name: title,
|
|
64
|
+
description,
|
|
65
|
+
applicationCategory: 'UtilitiesApplication',
|
|
66
|
+
operatingSystem: 'Web',
|
|
67
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
68
|
+
inLanguage: 'en',
|
|
69
|
+
};
|
|
70
|
+
|
|
3
71
|
export const content: SynesthesiaPainterLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
72
|
+
slug,
|
|
73
|
+
title,
|
|
74
|
+
description,
|
|
7
75
|
faqTitle: 'Frequently Asked Questions',
|
|
8
76
|
bibliographyTitle: 'Mind Bibliography',
|
|
9
77
|
ui: {
|
|
@@ -43,38 +111,12 @@ export const content: SynesthesiaPainterLocaleContent = {
|
|
|
43
111
|
{ type: 'paragraph', html: '<strong>Wassily Kandinsky</strong>, founder of abstract expressionism, experienced both grapheme-color and music-color synesthesia: he heard instruments in colors (yellow was a trumpet, deep blue a cello) and used these perceptions to create his theory of abstract art. In music, <strong>Alexander Scriabin</strong> composed <em>Prometheus: The Poem of Fire</em> with a part for "tastiera per luce" (light keyboard), designed to project colors corresponding to each note.' },
|
|
44
112
|
{ type: 'tip', title: 'Color Palette of This Tool', html: 'The color assignments are inspired by the most common statistical data in scientific literature. <strong>A → red</strong>, <strong>E → green</strong>, <strong>I → white/black depending on background</strong>, <strong>O → black/white</strong>, <strong>U → amber</strong>. Consonants follow less uniform patterns, but contrast with the background is always prioritized to guarantee readability.' },
|
|
45
113
|
],
|
|
46
|
-
faq
|
|
47
|
-
{
|
|
48
|
-
question: 'Do all synesthetes see the same colors for each letter?',
|
|
49
|
-
answer: 'No. Synesthetic colors are unique to each person. Statistical tendencies exist (A tends to be red for many), but no two synesthetes have exactly the same palette. This tool uses the colors most frequently reported in population studies, not the "correct" ones.',
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
question: 'Can I develop synesthesia by using this tool continuously?',
|
|
53
|
-
answer: 'Not in the strict neurological sense. Genuine synesthesia is a characteristic of the nervous system, not a learned skill. However, repeated use of color-letter associations can create strong associative memories. Some studies suggest that practicing these associations can improve text memory.',
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
question: 'What is the "Aura" mode for?',
|
|
57
|
-
answer: 'Aura mode simulates how some synesthetes describe seeing colors "floating" or "glowing" around letters rather than integrated into them. It creates a more atmospheric and immersive visual experience, especially on a dark background.',
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
question: 'Does the "Dots" mode have any scientific basis?',
|
|
61
|
-
answer: 'It is an artistic abstraction. It reduces the text to its "chromatic essence" by eliminating the recognizable shape of the letters. The result resembles chromatic data visualizations or pointillist paintings, and allows you to see the "color signature" of a text without meaning interfering.',
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
question: 'Why are some letters like I and O white or black?',
|
|
65
|
-
answer: 'In synesthesia studies, the vowels I and O, and the letter W, are frequently described as white, transparent, or black. This tool adapts those colors to the active background: white on dark background, black on light background, to always guarantee visibility.',
|
|
66
|
-
},
|
|
67
|
-
],
|
|
114
|
+
faq,
|
|
68
115
|
bibliography: [
|
|
69
116
|
{ name: 'Simner et al. (2006) – Synaesthesia: The prevalence of atypical cross-modal experiences', url: 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1626536/' },
|
|
70
117
|
{ name: 'Eagleman et al. (2007) – A standardized test battery for the study of synesthesia', url: 'https://www.sciencedirect.com/science/article/pii/S0010945207000087' },
|
|
71
118
|
{ name: 'Kandinsky, W. – Concerning the Spiritual in Art (1911)', url: 'https://en.wikipedia.org/wiki/Concerning_the_Spiritual_in_Art' },
|
|
72
119
|
],
|
|
73
|
-
howTo
|
|
74
|
-
|
|
75
|
-
{ name: 'Change visualization mode', text: 'Use the buttons in the top right corner to switch between Letters (colored text), Dots (color circles), and Aura (luminous letters with chromatic halos).' },
|
|
76
|
-
{ name: 'Explore different texts', text: 'Write names, words in different languages, or sentences to discover their unique chromatic palette. Long words create fascinating visual gradients.' },
|
|
77
|
-
{ name: 'Clear and start again', text: 'Use the "Clear" button in the bottom bar to wipe the canvas and explore a new text.' },
|
|
78
|
-
],
|
|
79
|
-
schemas: []
|
|
120
|
+
howTo,
|
|
121
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
80
122
|
};
|
|
@@ -1,9 +1,77 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { SynesthesiaPainterLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'pintor-sinestesia';
|
|
5
|
+
const title = 'Pintor de Sinestesia';
|
|
6
|
+
const description = 'Visualiza tus palabras en color según la sinestesia grafema-color. Cada letra tiene su propio color, convirtiendo el texto en arte cromático.';
|
|
7
|
+
|
|
8
|
+
const faq: SynesthesiaPainterLocaleContent['faq'] = [
|
|
9
|
+
{
|
|
10
|
+
question: '¿Todos los sinestésicos ven los mismos colores para cada letra?',
|
|
11
|
+
answer: 'No. Los colores sinestésicos son únicos para cada persona. Existen tendencias estadísticas (la A tiende a ser roja para muchos), pero no hay dos sinestésicos con exactamente la misma paleta. Esta herramienta usa los colores más frecuentemente reportados en estudios de población, no los "correctos".',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: '¿Puedo desarrollar sinestesia con el uso continuado de esta herramienta?',
|
|
15
|
+
answer: 'No en el sentido neurológico estricto. La sinestesia genuina es una característica del sistema nervioso, no una habilidad aprendida. Sin embargo, el uso repetido de asociaciones color-letra sí puede crear memorias asociativas fuertes. Algunos estudios sugieren que practicar con estas asociaciones puede mejorar la memoria de textos.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '¿Para qué sirve el modo "Aura"?',
|
|
19
|
+
answer: 'El modo Aura simula cómo algunos sinestésicos describen ver colores "flotando" o "brillando" alrededor de las letras en lugar de estar integrados en ellas. Crea una experiencia visual más atmosférica e inmersiva, especialmente sobre fondo oscuro.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿El modo "Puntos" tiene alguna base científica?',
|
|
23
|
+
answer: 'Es una abstracción artística. Reduce el texto a su "esencia cromática" eliminando la forma reconocible de las letras. El resultado se parece a visualizaciones de datos cromáticos o a pinturas puntillistas, y permite ver la "firma de color" de un texto sin que el significado interfiera.',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
question: '¿Por qué algunas letras como la I y la O son blancas o negras?',
|
|
27
|
+
answer: 'En los estudios de sinestesia, las vocales I y O, y la letra W, son frecuentemente descritas como blancas, transparentes o negras. Esta herramienta adapta esos colores al fondo activo: blanco sobre fondo oscuro, negro sobre fondo claro, para garantizar siempre visibilidad.',
|
|
28
|
+
},
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
const howTo: SynesthesiaPainterLocaleContent['howTo'] = [
|
|
32
|
+
{ name: 'Escribir el texto', text: 'Haz clic en el área de escritura y empieza a escribir. Cada letra aparecerá coloreada según su asociación sinestésica estadística.' },
|
|
33
|
+
{ name: 'Cambiar el modo de visualización', text: 'Usa los botones de la esquina superior derecha para cambiar entre Letras (texto coloreado), Puntos (círculos de color) y Aura (letras luminosas con halo cromático).' },
|
|
34
|
+
{ name: 'Explorar diferentes textos', text: 'Escribe nombres, palabras en distintos idiomas o frases para descubrir su paleta cromática única. Las palabras largas crean gradientes visuales fascinantes.' },
|
|
35
|
+
{ name: 'Borrar y empezar de nuevo', text: 'Usa el botón "Borrar" en la barra inferior para limpiar el lienzo y explorar un nuevo texto.' },
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
39
|
+
'@context': 'https://schema.org',
|
|
40
|
+
'@type': 'FAQPage',
|
|
41
|
+
mainEntity: faq.map((item) => ({
|
|
42
|
+
'@type': 'Question',
|
|
43
|
+
name: item.question,
|
|
44
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
45
|
+
})),
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const howToSchema: WithContext<HowTo> = {
|
|
49
|
+
'@context': 'https://schema.org',
|
|
50
|
+
'@type': 'HowTo',
|
|
51
|
+
name: title,
|
|
52
|
+
description,
|
|
53
|
+
step: howTo.map((step) => ({
|
|
54
|
+
'@type': 'HowToStep',
|
|
55
|
+
name: step.name,
|
|
56
|
+
text: step.text,
|
|
57
|
+
})),
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
61
|
+
'@context': 'https://schema.org',
|
|
62
|
+
'@type': 'SoftwareApplication',
|
|
63
|
+
name: title,
|
|
64
|
+
description,
|
|
65
|
+
applicationCategory: 'UtilitiesApplication',
|
|
66
|
+
operatingSystem: 'Web',
|
|
67
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
68
|
+
inLanguage: 'es',
|
|
69
|
+
};
|
|
70
|
+
|
|
3
71
|
export const content: SynesthesiaPainterLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
72
|
+
slug,
|
|
73
|
+
title,
|
|
74
|
+
description,
|
|
7
75
|
faqTitle: 'Preguntas Frecuentes',
|
|
8
76
|
bibliographyTitle: 'Bibliografía de la Mente',
|
|
9
77
|
ui: {
|
|
@@ -45,38 +113,12 @@ export const content: SynesthesiaPainterLocaleContent = {
|
|
|
45
113
|
{ value: '26+10', label: 'Letras y dígitos coloreados', icon: 'mdi:alphabetical' },
|
|
46
114
|
], columns: 4 },
|
|
47
115
|
],
|
|
48
|
-
faq
|
|
49
|
-
{
|
|
50
|
-
question: '¿Todos los sinestésicos ven los mismos colores para cada letra?',
|
|
51
|
-
answer: 'No. Los colores sinestésicos son únicos para cada persona. Existen tendencias estadísticas (la A tiende a ser roja para muchos), pero no hay dos sinestésicos con exactamente la misma paleta. Esta herramienta usa los colores más frecuentemente reportados en estudios de población, no los "correctos".',
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
question: '¿Puedo desarrollar sinestesia con el uso continuado de esta herramienta?',
|
|
55
|
-
answer: 'No en el sentido neurológico estricto. La sinestesia genuina es una característica del sistema nervioso, no una habilidad aprendida. Sin embargo, el uso repetido de asociaciones color-letra sí puede crear memorias asociativas fuertes. Algunos estudios sugieren que practicar con estas asociaciones puede mejorar la memoria de textos.',
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
question: '¿Para qué sirve el modo "Aura"?',
|
|
59
|
-
answer: 'El modo Aura simula cómo algunos sinestésicos describen ver colores "flotando" o "brillando" alrededor de las letras en lugar de estar integrados en ellas. Crea una experiencia visual más atmosférica e inmersiva, especialmente sobre fondo oscuro.',
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
question: '¿El modo "Puntos" tiene alguna base científica?',
|
|
63
|
-
answer: 'Es una abstracción artística. Reduce el texto a su "esencia cromática" eliminando la forma reconocible de las letras. El resultado se parece a visualizaciones de datos cromáticos o a pinturas puntillistas, y permite ver la "firma de color" de un texto sin que el significado interfiera.',
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
question: '¿Por qué algunas letras como la I y la O son blancas o negras?',
|
|
67
|
-
answer: 'En los estudios de sinestesia, las vocales I y O, y la letra W, son frecuentemente descritas como blancas, transparentes o negras. Esta herramienta adapta esos colores al fondo activo: blanco sobre fondo oscuro, negro sobre fondo claro, para garantizar siempre visibilidad.',
|
|
68
|
-
},
|
|
69
|
-
],
|
|
116
|
+
faq,
|
|
70
117
|
bibliography: [
|
|
71
118
|
{ name: 'Simner et al. (2006) – Synaesthesia: The prevalence of atypical cross-modal experiences', url: 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1626536/' },
|
|
72
119
|
{ name: 'Eagleman et al. (2007) – A standardized test battery for the study of synesthesia', url: 'https://www.sciencedirect.com/science/article/pii/S0010945207000087' },
|
|
73
120
|
{ name: 'Kandinsky, W. – De lo espiritual en el arte (1911)', url: 'https://es.wikipedia.org/wiki/De_lo_espiritual_en_el_arte' },
|
|
74
121
|
],
|
|
75
|
-
howTo
|
|
76
|
-
|
|
77
|
-
{ name: 'Cambiar el modo de visualización', text: 'Usa los botones de la esquina superior derecha para cambiar entre Letras (texto coloreado), Puntos (círculos de color) y Aura (letras luminosas con halo cromático).' },
|
|
78
|
-
{ name: 'Explorar diferentes textos', text: 'Escribe nombres, palabras en distintos idiomas o frases para descubrir su paleta cromática única. Las palabras largas crean gradientes visuales fascinantes.' },
|
|
79
|
-
{ name: 'Borrar y empezar de nuevo', text: 'Usa el botón "Borrar" en la barra inferior para limpiar el lienzo y explorar un nuevo texto.' },
|
|
80
|
-
],
|
|
81
|
-
schemas: []
|
|
122
|
+
howTo,
|
|
123
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
82
124
|
};
|
|
@@ -1,9 +1,77 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { SynesthesiaPainterLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'peintre-de-synesthesie';
|
|
5
|
+
const title = 'Peintre de Synesthésie';
|
|
6
|
+
const description = 'Visualisez la couleur des mots selon la synesthésie graphème-couleur. Chaque lettre possède sa propre couleur, transformant le texte en art chromatique.';
|
|
7
|
+
|
|
8
|
+
const faq: SynesthesiaPainterLocaleContent['faq'] = [
|
|
9
|
+
{
|
|
10
|
+
question: 'Tous les synesthètes voient-ils les mêmes couleurs pour chaque lettre ?',
|
|
11
|
+
answer: 'Non. Les couleurs synesthésiques sont uniques à chaque personne. Il existe des tendances statistiques (le A a tendance à être rouge pour beaucoup), mais aucun couple de synesthètes n\'a exactement la même palette. Cet outil utilise les couleurs les plus fréquemment rapportées dans les études de population, et non les "bonnes" couleurs.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: 'Puis-je développer la synesthésie en utilisant cet outil de manière continue ?',
|
|
15
|
+
answer: 'Pas au sens neurologique strict. La véritable synesthésie est une caractéristique du système nerveux, pas une compétence acquise. Cependant, l\'utilisation répétée d\'associations couleur-lettre peut créer de forts souvenirs associatifs. Certaines études suggèrent que pratiquer ces associations peut améliorer la mémoire textuelle.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'À quoi sert le mode "Aura" ?',
|
|
19
|
+
answer: 'Le mode Aura simule la façon dont certains synesthètes décrivent voir les couleurs "flotter" ou "rayonner" autour des lettres plutôt qu\'intégrées à celles-ci. Cela crée une expérience visuelle plus atmosphérique et immersive, particulièrement sur un fond sombre.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Le mode "Points" a-t-il une base scientifique ?',
|
|
23
|
+
answer: 'C\'est une abstraction artistique. Il réduit le texte à son "essence chromatique" en éliminant la forme reconnaissable des lettres. Le résultat ressemble à des visualisations de données chromatiques ou à des peintures pointillistes, et permet de voir la "signature colorée" d\'un texte sans que le sens n\'interfère.',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
question: 'Pourquoi certaines lettres comme I et O sont-elles blanches ou noires ?',
|
|
27
|
+
answer: 'Dans les études sur la synesthésie, les voyelles I et O, ainsi que la lettre W, sont fréquemment décrites comme blanches, transparentes ou noires. Cet outil adapte ces couleurs au fond actif : blanc sur fond sombre, noir sur fond clair, pour toujours garantir la visibilité.',
|
|
28
|
+
},
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
const howTo: SynesthesiaPainterLocaleContent['howTo'] = [
|
|
32
|
+
{ name: 'Écrire du texte', text: 'Cliquez sur la zone d\'écriture et commencez à taper. Chaque lettre apparaîtra colorée selon son association synesthésique statistique.' },
|
|
33
|
+
{ name: 'Changer le mode de visualisation', text: 'Utilisez les boutons en haut à droite pour basculer entre Lettres (texte coloré), Points (cercles de couleur) et Aura (lettres lumineuses avec halos chromatiques).' },
|
|
34
|
+
{ name: 'Explorer différents textes', text: 'Écrivez des noms, des mots dans différentes langues ou des phrases pour découvrir leur palette chromatique unique. Les mots longs créent des dégradés visuels fascinants.' },
|
|
35
|
+
{ name: 'Effacer et recommencer', text: 'Utilisez le bouton "Effacer" dans la barre inférieure pour vider le canevas et explorer un nouveau texte.' },
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
39
|
+
'@context': 'https://schema.org',
|
|
40
|
+
'@type': 'FAQPage',
|
|
41
|
+
mainEntity: faq.map((item) => ({
|
|
42
|
+
'@type': 'Question',
|
|
43
|
+
name: item.question,
|
|
44
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
45
|
+
})),
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const howToSchema: WithContext<HowTo> = {
|
|
49
|
+
'@context': 'https://schema.org',
|
|
50
|
+
'@type': 'HowTo',
|
|
51
|
+
name: title,
|
|
52
|
+
description,
|
|
53
|
+
step: howTo.map((step) => ({
|
|
54
|
+
'@type': 'HowToStep',
|
|
55
|
+
name: step.name,
|
|
56
|
+
text: step.text,
|
|
57
|
+
})),
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
61
|
+
'@context': 'https://schema.org',
|
|
62
|
+
'@type': 'SoftwareApplication',
|
|
63
|
+
name: title,
|
|
64
|
+
description,
|
|
65
|
+
applicationCategory: 'UtilitiesApplication',
|
|
66
|
+
operatingSystem: 'Web',
|
|
67
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
68
|
+
inLanguage: 'fr',
|
|
69
|
+
};
|
|
70
|
+
|
|
3
71
|
export const content: SynesthesiaPainterLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
72
|
+
slug,
|
|
73
|
+
title,
|
|
74
|
+
description,
|
|
7
75
|
faqTitle: 'Questions Fréquemment Posées',
|
|
8
76
|
bibliographyTitle: 'Bibliographie de l\'Esprit',
|
|
9
77
|
ui: {
|
|
@@ -43,38 +111,12 @@ export const content: SynesthesiaPainterLocaleContent = {
|
|
|
43
111
|
{ type: 'paragraph', html: '<strong>Wassily Kandinsky</strong>, fondateur de l\'expressionnisme abstrait, expérimentait à la fois la synesthésie graphème-couleur et musique-couleur : il entendait les instruments en couleurs (le jaune était une trompette, le bleu profond un violoncelle) et utilisait ces perceptions pour créer sa théorie de l\'art abstrait. En musique, <strong>Alexandre Scriabine</strong> a composé <em>Prométhée : Le Poème du Feu</em> avec une partie pour "clavier à lumières" (tastiera per luce), conçue pour projeter des couleurs correspondant à chaque note.' },
|
|
44
112
|
{ type: 'tip', title: 'Palette de Couleurs de cet Outil', html: 'Les attributions de couleurs s\'inspirent des données statistiques les plus courantes dans la littérature scientifique. <strong>A → rouge</strong>, <strong>E → vert</strong>, <strong>I → blanc/noir selon le fond</strong>, <strong>O → noir/blanc</strong>, <strong>U → ambre</strong>. Les consonnes suivent des schémas moins uniformes, mais le contraste avec l\'arrière-plan est toujours privilégié pour garantir la lisibilité.' },
|
|
45
113
|
],
|
|
46
|
-
faq
|
|
47
|
-
{
|
|
48
|
-
question: 'Tous les synesthètes voient-ils les mêmes couleurs pour chaque lettre ?',
|
|
49
|
-
answer: 'Non. Les couleurs synesthésiques sont uniques à chaque personne. Il existe des tendances statistiques (le A a tendance à être rouge pour beaucoup), mais aucun couple de synesthètes n\'a exactement la même palette. Cet outil utilise les couleurs les plus fréquemment rapportées dans les études de population, et non les "bonnes" couleurs.',
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
question: 'Puis-je développer la synesthésie en utilisant cet outil de manière continue ?',
|
|
53
|
-
answer: 'Pas au sens neurologique strict. La véritable synesthésie est une caractéristique du système nerveux, pas une compétence acquise. Cependant, l\'utilisation répétée d\'associations couleur-lettre peut créer de forts souvenirs associatifs. Certaines études suggèrent que pratiquer ces associations peut améliorer la mémoire textuelle.',
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
question: 'À quoi sert le mode "Aura" ?',
|
|
57
|
-
answer: 'Le mode Aura simule la façon dont certains synesthètes décrivent voir les couleurs "flotter" ou "rayonner" autour des lettres plutôt qu\'intégrées à celles-ci. Cela crée une expérience visuelle plus atmosphérique et immersive, particulièrement sur un fond sombre.',
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
question: 'Le mode "Points" a-t-il une base scientifique ?',
|
|
61
|
-
answer: 'C\'est une abstraction artistique. Il réduit le texte à son "essence chromatique" en éliminant la forme reconnaissable des lettres. Le résultat ressemble à des visualisations de données chromatiques ou à des peintures pointillistes, et permet de voir la "signature colorée" d\'un texte sans que le sens n\'interfère.',
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
question: 'Pourquoi certaines lettres comme I et O sont-elles blanches ou noires ?',
|
|
65
|
-
answer: 'Dans les études sur la synesthésie, les voyelles I et O, ainsi que la lettre W, sont fréquemment décrites comme blanches, transparentes ou noires. Cet outil adapte ces couleurs au fond actif : blanc sur fond sombre, noir sur fond clair, pour toujours garantir la visibilité.',
|
|
66
|
-
},
|
|
67
|
-
],
|
|
114
|
+
faq,
|
|
68
115
|
bibliography: [
|
|
69
116
|
{ name: 'Simner et al. (2006) – Synaesthesia: The prevalence of atypical cross-modal experiences', url: 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1626536/' },
|
|
70
117
|
{ name: 'Eagleman et al. (2007) – A standardized test battery for the study of synesthesia', url: 'https://www.sciencedirect.com/science/article/pii/S0010945207000087' },
|
|
71
118
|
{ name: 'Kandinsky, W. – Du Spirituel dans l\'Art (1911)', url: 'https://fr.wikipedia.org/wiki/Du_spirituel_dans_l\'art' },
|
|
72
119
|
],
|
|
73
|
-
howTo
|
|
74
|
-
|
|
75
|
-
{ name: 'Changer le mode de visualisation', text: 'Utilisez les boutons en haut à droite pour basculer entre Lettres (texte coloré), Points (cercles de couleur) et Aura (lettres lumineuses avec halos chromatiques).' },
|
|
76
|
-
{ name: 'Explorer différents textes', text: 'Écrivez des noms, des mots dans différentes langues ou des phrases pour découvrir leur palette chromatique unique. Les mots longs créent des dégradés visuels fascinants.' },
|
|
77
|
-
{ name: 'Effacer et recommencer', text: 'Utilisez le bouton "Effacer" dans la barre inférieure pour vider le canevas et explorer un nouveau texte.' },
|
|
78
|
-
],
|
|
79
|
-
schemas: []
|
|
120
|
+
howTo,
|
|
121
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
80
122
|
};
|