pleroma-fe/src/components/fun_text.style.js

40 lines
672 B
JavaScript
Raw Normal View History

export default {
name: 'FunText',
selector: '/*fun-text*/',
virtual: true,
variants: {
greentext: '.greentext',
2026-01-06 16:22:52 +02:00
cyantext: '.cyantext',
},
states: {
2026-01-06 16:22:52 +02:00
faint: '.faint',
},
defaultRules: [
{
directives: {
textColor: '--text',
2026-01-06 16:22:52 +02:00
textAuto: 'preserve',
},
},
{
state: ['faint'],
directives: {
2026-01-06 16:22:52 +02:00
textOpacity: 0.5,
},
},
{
variant: 'greentext',
directives: {
textColor: '--cGreen',
2026-01-06 16:22:52 +02:00
textAuto: 'preserve',
},
},
{
variant: 'cyantext',
directives: {
textColor: '--cBlue',
2026-01-06 16:22:52 +02:00
textAuto: 'preserve',
},
},
],
}