2024-01-18 04:35:25 -08:00
|
|
|
export default {
|
|
|
|
name: 'Text',
|
2024-01-23 09:18:55 -08:00
|
|
|
selector: '/*text*/',
|
2024-01-31 07:39:51 -08:00
|
|
|
virtual: true,
|
|
|
|
variants: {
|
|
|
|
greentext: '.greentext'
|
|
|
|
},
|
2024-01-18 04:35:25 -08:00
|
|
|
states: {
|
|
|
|
faint: '.faint'
|
2024-01-31 07:39:51 -08:00
|
|
|
},
|
|
|
|
defaultRules: [
|
|
|
|
{
|
|
|
|
component: 'Text',
|
|
|
|
directives: {
|
|
|
|
textColor: '--text'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
component: 'Text',
|
|
|
|
state: ['faint'],
|
|
|
|
directives: {
|
|
|
|
textOpacity: 0.5
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
component: 'Text',
|
|
|
|
variant: 'greentext',
|
|
|
|
directives: {
|
|
|
|
textColor: '--cGreen'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2024-01-18 04:35:25 -08:00
|
|
|
}
|