aboutsummaryrefslogtreecommitdiff
path: root/src/components/text.style.js
blob: e52b6f68dec2f9a0bc8a865b38f4b7c15d224470 (plain)
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
export default {
  name: 'Text',
  selector: '/*text*/',
  virtual: true,
  variants: {
    greentext: '.greentext'
  },
  states: {
    faint: '.faint'
  },
  defaultRules: [
    {
      component: 'Text',
      directives: {
        textColor: '--text'
      }
    },
    {
      component: 'Text',
      state: ['faint'],
      directives: {
        textColor: '--text',
        textOpacity: 0.5
      }
    },
    {
      component: 'Text',
      variant: 'greentext',
      directives: {
        textColor: '--cGreen'
      }
    },
    {
      component: 'Text',
      variant: 'greentext',
      state: ['faint'],
      directives: {
        textColor: '--cGreen',
        textOpacity: 0.5
      }
    }
  ]
}