pleroma-fe/src/components/fun_text.style.js
2026-01-06 16:22:52 +02:00

40 lines
672 B
JavaScript

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