@acorex/styles 7.1.3 → 7.1.6
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 +1 -1
- package/tailwind.config.js +16 -0
package/package.json
CHANGED
package/tailwind.config.js
CHANGED
@@ -118,6 +118,14 @@ module.exports = withAnimations({
|
|
118
118
|
'danger-fore': withOpacityValue('--ax-color-danger-fore'),
|
119
119
|
'ghost-fore': withOpacityValue('--ax-color-ghost-fore'),
|
120
120
|
},
|
121
|
+
fill: {
|
122
|
+
'primary-fore': withOpacityValue('--ax-color-primary-fore'),
|
123
|
+
'secondary-fore': withOpacityValue('--ax-color-secondary-fore'),
|
124
|
+
'success-fore': withOpacityValue('--ax-color-success-fore'),
|
125
|
+
'warning-fore': withOpacityValue('--ax-color-warning-fore'),
|
126
|
+
'danger-fore': withOpacityValue('--ax-color-danger-fore'),
|
127
|
+
'ghost-fore': withOpacityValue('--ax-color-ghost-fore'),
|
128
|
+
},
|
121
129
|
backgroundColor: {
|
122
130
|
default: withOpacityValue('--ax-color-background-default'),
|
123
131
|
surface: withOpacityValue('--ax-color-surface'),
|
@@ -133,6 +141,14 @@ module.exports = withAnimations({
|
|
133
141
|
borderRadius: {
|
134
142
|
default: 'var(--ax-rounded-border-default)',
|
135
143
|
},
|
144
|
+
lineHeight: {
|
145
|
+
11: '2.5rem',
|
146
|
+
12: '3rem',
|
147
|
+
12: '3rem',
|
148
|
+
14: '3.5rem',
|
149
|
+
16: '4rem',
|
150
|
+
20: '5rem',
|
151
|
+
},
|
136
152
|
},
|
137
153
|
},
|
138
154
|
|